Detailed explanation of the use of props in React's three major attributes

Detailed explanation of the use of props in React's three major attributes

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 Components

function 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

When a React element is a user-defined component, it converts the attributes and children received by JSX into a single object and passes it to the component. This object is called "props"

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.children

Props are read-only

React emphasizes in the documentation

All React components must protect their props from being mutated, just like pure functions.

We have already explained the concept of pure functions in redux. In short, we cannot change the value of props.

Inter-component communication

Now let's summarize the communication between components:

  • props First, let’s write a class component:
// 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>
            </>
        )
}
  • eventbus (subscribe-publish mechanism)

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:
  • In-depth understanding of the three core properties of React
  • How to deeply understand React's ref attribute
  • Detailed explanation of the use of Refs in React's three major attributes
  • Detailed explanation of the use of state in React's three major attributes
  • Do you know the three major properties of React?

<<:  Sequence implementation method based on MySQL

>>:  How to implement Docker volume mounting

Recommend

Setting up shared folders in Ubuntu virtual machine of VMWare14.0.0

This is my first blog post. Due to time constrain...

CSS and HTML and front-end technology layer diagram

Front-end technology layer (The picture is a bit e...

CentOS system rpm installation and configuration of Nginx

Table of contents CentOS rpm installation and con...

MySQL InnoDB row_id boundary overflow verification method steps

background I talked to my classmates about a boun...

MySQL decimal unsigned update negative numbers converted to 0

Today, when verifying the concurrency problem of ...

Examples of using MySQL pessimistic locking and optimistic locking

Pessimistic Lock Pessimistic lock, considers the ...

HTML tag dl dt dd usage instructions

Basic structure: Copy code The code is as follows:...

Undo log in MySQL

Concept introduction: We know that the redo log i...

Mysql dynamically updates the database script example explanation

The specific upgrade script is as follows: Dynami...

win2008 server security settings deployment document (recommended)

I had been working on the project before the New ...

Solution to mysql error code 1064

If the words in the sql statement conflict with t...

Logrotate implements Catalina.out log rotation every two hours

1. Introduction to Logrotate tool Logrotate is a ...