Before learning the knowledge points of data transmission between React framework components, we need to clarify a few usage principles.
1. Parent component passes data to child componentThe parent component passes data to the child component by setting the properties of the transferred data in the child component tag when referencing the child component in the parent component; and the child component receives the passed data through this.props; this realizes the data transmission from the parent component to the child component. 1.1. Parent component codeimport React, { Component } from 'react'; import './App.css'; import Child from './child' class App extends Component { constructor(props){ super(props); this.state={ msg:'parent class message', name:'John', age:99 } } callback=(msg,name,age)=>{ // setState method, modify the value of msg, the value is passed from child this.setState({msg}); this.setState({name}); this.setState({age}); } render() { return ( <div className="App"> <p> Message: {this.state.msg}</p> <Child callback={this.callback} age={this.state.age} name={this.state.name}></Child> </div> ); } } export default App; Code description: When the parent component uses the child component (Child), it transfers two properties (age and name) and one method (callback is not considered for now) to the child component. Key code: <Child name={this.state.name} age={this.state.age}></Child> 1.2. Subcomponent codeimport React from "react"; class Child extends React.Component{ constructor(props){ super(props); this.state={ name:'Andy', age:31, msg:"Message from subclass" } } change=()=>{ this.props.callback(this.state.msg,this.state.name,this.state.age); } render(){ return( <div> <div>{this.props.name}</div> <div>{this.props.age}</div> <button onClick={this.change}>Click</button> </div> ) } } export default Child; Code description: In the child component, this.props is used directly in render to accept the data transmitted by the parent component and use it directly. It is not recommended that child components use this.setSate to process the received data. Key code: <div>{this.props.name}</div> <div>{this.props.age}</div> 2. Subcomponents transfer data to parent componentsIn the React framework, data transmission from child components to parent components depends on the data transmission from parent components to child components. In fact, the parent component transfers the function of its own scope to the child component; the child component calls the function and transfers the data to be transmitted to the parent component in the form of function parameters. 2.1. Parent component codeIn the code example above, a function is defined in the parent component and transferred to the child component. class App extends Component { ...... callback=(msg,name,age)=>{ // setState method, modify the value of msg, the value is passed from child this.setState({msg}); this.setState({name}); this.setState({age}); } render() { return ( <div className="App"> <Child callback={this.callback}></Child> </div> ); } } export default App; The parent component passes the function of its own scope to the child component. When the child component calls this function through 2.2. Subcomponent codeThe child component receives the function transmitted from the parent component by using this.props; and calls this function through the parameter method to transmit data to the parent component. class Child extends React.Component{ ...... change=()=>{ this.props.callback(this.state.msg,this.state.name,this.state.age); } render(){ return( <div> <button onClick={this.change}>Click</button> </div> ) } } export default Child; A method The above is a detailed explanation of the data transmission between React parent components and child components. For more information about the data transmission between React parent components and child components, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Why should you be careful with Nginx's add_header directive?
>>: How to recover accidentally deleted messages files in Linux
Note: I use Centos to install docker Step 1: Inst...
Preface I believe most people have used MySQL and...
Scenario 1: To achieve a semi-transparent border:...
Table of contents Overview Hash Properties Host p...
Recently, when I was using the Linux operating sy...
Introduction Closure is a very powerful feature i...
Using the html-webpack-plugin plug-in to start th...
Ellipses appear when multi-line text overflows Th...
CEP - Complex Event Processing. The payment has n...
I encountered several browser compatibility issue...
If people have been idle for too long, they will ...
Table of contents 1. What is JSONP 2. JSONP cross...
1. Ubuntu Server 18.04.5 LTS system installation ...
In the horizontal direction, you can set the alig...
MYSQL commonly used query commands: mysql> sel...