📌  相关文章
📜  在 ReactJS 中单击按钮时如何获取父 div 的键属性?

📅  最后修改于: 2022-05-13 01:56:53.347000             🧑  作者: Mango

在 ReactJS 中单击按钮时如何获取父 div 的键属性?

在 ReactJs 中,我们可以从父组件传递子组件中的属性。因此,我们将做同样的事情并将父组件的键作为属性传递给子组件。

创建 React 应用程序并安装模块:

  • 第 1 步:使用以下命令创建一个 React 应用程序:

    npx create-react-app foldername
  • 第 2 步:创建项目文件夹(即文件夹名称)后使用以下命令移动到该文件夹:

    cd foldername

第 3 步:创建 Parent.js 和 Child.js 组件。

项目结构:它将如下所示。

示例:现在在App.js文件中写下以下代码。在这里,App 是我们编写代码的默认组件。

App.js
import React, { Component }  from 'react';
  
import Parent from './Parent';
  
class App extends Component {
  
  state = {
    key: "GFG",
  }
  
  render() {
    return (
      
        

GeeksforGeeks

               
    );   } }    export default App;


Parent.js
import React, { Component }  from 'react';
  
import Child from './Child';
  
class Parent extends Component {
  
  render() {
    return (
        // Passing key in child
        
            

(Parent.js) Key = {this.props.keyValue}

                     
    );   } }    export default Parent;


Child.js
import React, { Component }  from 'react';
  
class Child extends Component {
  
  state = {
    key: "",
  }
  
  handleClick = () => {
    this.setState({key: this.props.keyValue});
  }
  
  render() {
    return (
      
        

(Child.js) Key = {this.state.key}

               
    );   }      }    export default Child;


父.js

import React, { Component }  from 'react';
  
import Child from './Child';
  
class Parent extends Component {
  
  render() {
    return (
        // Passing key in child
        
            

(Parent.js) Key = {this.props.keyValue}

                     
    );   } }    export default Parent;

Child.js

import React, { Component }  from 'react';
  
class Child extends Component {
  
  state = {
    key: "",
  }
  
  handleClick = () => {
    this.setState({key: this.props.keyValue});
  }
  
  render() {
    return (
      
        

(Child.js) Key = {this.state.key}

               
    );   }      }    export default Child;

运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:

npm start

输出:现在打开浏览器并转到http://localhost:3000/ ,您将看到以下输出。