In the last issue, we talked about state. Next, let’s talk about props. The function of props is to communicate between components (parent-child components). First, let’s talk about its usage in various components: Class Component//Parent component value passing class Father extends React.PureComponent{ render(){ return ( <Son value={"son"} /> ) } } class Son extends React.PureComponent{ render(){ return ( <div>this data is {this.props.value}</div> ) } } Functional Componentsfunction Fa(){ return ( <Son value={"son"} /> ) } function Son(props){ return ( <div>this data is {props.value}</div> ) } In a function component, props only needs to pass a value, which is very convenient. In the React documentation, the explanation of props is
Therefore, we can get the value uploaded by the parent component through props, and we can also directly get the child component written in jsx through Props are read-onlyReact emphasizes in the documentation
We have already explained the concept of pure functions in redux. In short, we cannot change the value of props. Inter-component communicationNow let's summarize the communication between components:
// We have already talked about passing values from parent components to child components. Now let's summarize how child components pass values to parent components. At this time, the parent component often needs to pass a props function to the child component first. The child component changes the value of the parent component by calling the passed function export default class Fa extends Component { state = {faValue:'Fa1'} changeFa = (value)=>{ this.setState(()=>{ return {faValue:value} }) } render() { return ( <> <h1>Fa's value is {this.state.faValue}</h1> <Son changeFa={this.changeFa}/> </> ) } } export default class Son extends React.PureComponent{ changeValue = ()=>{ this.props.changeFa(this.inputRef.value) } render() { return ( <> <input type="text" placeholder={"Please enter your value"} ref={(el)=>{this.inputRef = el}}/> <button onClick={this.changeValue}>change</button> </> ) } } Then write a function component: function Fa(){ const [faValue,setFaValue] = useState("Fa1") const changeFa = (value)=>{ setFaValue(value) } return ( <div> <h1>Fa's value is {faValue}</h1> <Son changeFa={changeFa} /> </div> ) } function Son(props){ const inputValue = useRef("") //Define a function to change the value of the fa component const changeFaValue = ()=>{ props.changeFa(inputValue.current.value) } return ( <> <input type="text" placeholder={"Please enter the value you want to change"} ref={inputValue}/> <button onClick={changeFaValue}>change value</button> </> ) }
This can be understood as a weakened redux. Here we use the library pubsub-js to write it. The writing method is as follows: //For example, for the previous input case, I need to pass a value to the brother component. If we don't use props, how should we write Bro: export default class Bro extends Component { componentDidMount() { this.sonData = PubSub.subscribe("brother",(msg,data)=>{ console.log("Bro Component have received the msg",data); }) } componentWillUnmount() { PubSub.unsubscribe(this.sonData) } render() { return ( <> <div>brother</div> </> ) } } Son: export default class Son extends React.PureComponent{ changeValue = ()=>{ PubSub.publish("brother",this.inputRef.value) } render() { return ( <> <input type="text" placeholder={"Please enter your value"} ref={(el)=>{this.inputRef = el}}/> <button onClick={this.changeValue}>change</button> </> ) } } This method commonly uses three APIs. The first one is subscribe, which publishes the corresponding event and defines what to do with the event. The second is publish, which subscribes to published events and passes in the corresponding values to be changed. The third one is unsubscribe, which is used to cancel the publishing and optimize the memory. The above is the detailed content of the detailed explanation of the use of props, one of the three major attributes of React. For more information about props, one of the three major attributes of React, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Sequence implementation method based on MySQL
>>: How to implement Docker volume mounting
This is my first blog post. Due to time constrain...
Front-end technology layer (The picture is a bit e...
Table of contents CentOS rpm installation and con...
background I talked to my classmates about a boun...
Today, when verifying the concurrency problem of ...
Pessimistic Lock Pessimistic lock, considers the ...
Today's campus recruitment written test requi...
Basic structure: Copy code The code is as follows:...
Concept introduction: We know that the redo log i...
The specific upgrade script is as follows: Dynami...
1. The three files /etc/hosts, /etc/resolv.conf a...
I had been working on the project before the New ...
If the words in the sql statement conflict with t...
tomcat is an open source web server. The web base...
1. Introduction to Logrotate tool Logrotate is a ...