Detailed explanation of component communication in react

Detailed explanation of component communication in react

Parent component communicates with child components

  • The parent component passes its state to the child component, and the child component receives it as a property. When the parent component changes its state, the property received by the child component will change
  • The parent component uses ref to mark the child component, and changes the state of the child component by calling the child component's method. The parent component can also call the child component's method.

Define ref reference in parent group

import React,{Component,createRef} from 'react'
import Child1 from './Child1'
export default class App extends Component {
    constructor(props){
        super(props)
        this.child = createRef()
    }
    render(){
        return(
            <div>
                <Child1 ref={this.child}/>
                <button onClick={this.fn.bind(this)}></button>
            </div>
        )
    }
    fn(){
        const child = this.child.current
        child.setTitle()
    }
}

Subcomponent defines the data source and how to modify the data source

import React,{Component} from 'react'
export default class Child1 extends Component{
    state={
        title:'Title'
    }
    render(){
        return (
            <div>
                {this.state.title}
            </div>
        )
    }
    setTitle(){
        this.setstate({title:'hh'})
    }
}

Child components communicate with parent components

The parent component passes one of its own methods to the child component. You can do anything in the method, such as changing the state. The child component receives the parent component's method through this.props and calls it.

Cross-component communication

React does not have an event bus like Vue to solve this problem. One way is to use their common parent component to implement it through proxy, but the process will be quite cumbersome. React provides Context to achieve cross-component communication without having to explicitly pass props through each layer of the component tree.

Complex non-parent-child component communication is difficult to handle in react, and data sharing between multiple components is also difficult to handle. In actual work, we will use flux, redux, and mobx to implement

Ancestors and descendants

  1. Define the store class to export Provider, COnsumer in createContext
  2. Publish a message in the ancestor node: Provider value = any data
  3. Subscribe in descendant nodes: Consumer callback function {value=>(component)}
    1. Define the data source store
    store.js
import React , {createContext} from 'react'
let {Provider, Consumer} = createContext()
export { 
    Provider, //Publish Consumer //Subscribe}

2. Ancestor Node

import React ,{Component} from 'react'
import {Provider,Consumer} from './store'
import Son from './Son'
export default class App extends Component {
    constructor(props){
        super(props)
        this.state={
            name:'mingcen'
        }
    }
    render(){
        return (
            <div>
                <Provider value={this.state.name}>
                    <Son/>
                </Provider>
            </div>
        )
    }
}

3. Descendant nodes

import React,{Component} from'react'
import {Consumer} from './store'
export default class Son1 extends Component{
    constructor(props){
        super(props)
        this.state={
            name:'uuu'
        }
    }
    render(){
        return(
            <div>
                <Consumer>
                   {
                        value=>{
                            <div>{value.name}</div>
                        }
                   }
                </Consumer>
            </div>
        )
    }
}

Brother node communication

  • A child object is attached to the event
  • Another one hanging on the properties
  • By changing the properties of another component, you can change the content accepted by another component.

ancestor

state={
    count:1,
    setCount:()=>{
        this.setState(state=>{
            return {
                count:++state.count
            }
        })
    }
}
render(){
    let {count,setCount} = this.state
    return(
        <div>
            <Provider value={{count,setCount}}>
                <Cmp1></Cmp1>
                <Cmp2></Cmp2>
            </Provider>
        </div>
    )
}

Brother Cmp2

import React, { Component , createContext } from 'react'
export default class Cmp2 extends Component {
  // Only got the default data --> not wrapped in the Provider component static contextType = createContext
  render() {
    return (
      <div>
        <button onClick={this.setCount.bind(this)}>Auto-increment data</button>
      </div>
    )
  }
  setCount() {
    this.context.setCount()
  }
}

Brother Cmp1

<Consumer>
    {
        value => <h3>{value.count}</h3>
    }
</Consumer>

Summarize

This article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • React parent-child component communication implementation method
  • The communication process between nested components and nested components in React
  • React component communication example
  • React data transfer method of internal communication between components
  • Detailed explanation of several ways of component communication in react
  • React development tutorial: Communication between React components
  • Detailed explanation of component communication issues in React
  • Example code for communication between React components
  • Three ways to communicate between React components (simple and easy to use)

<<:  Markup language - specify CSS styles for text

>>:  Analysis of the usage of Xmeter API interface testing tool

Recommend

Vue.js application performance optimization analysis + solution

Table of contents 1. Introduction 2. Why do we ne...

How to prevent website content from being included in search engines

Usually the goal of building a website is to have...

MySQL 5.7.17 installation and configuration method graphic tutorial (windows10)

MySQL 5.7.17 installation and configuration metho...

Implementation of master-slave replication in docker compose deployment

Table of contents Configuration parsing Service C...

JS Canvas interface and animation effects

Table of contents Overview Canvas API: Drawing Gr...

Detailed explanation of the new features of ES9: Async iteration

Table of contents Asynchronous traversal Asynchro...

Pure CSS to modify the browser scrollbar style example

Use CSS to modify the browser scroll bar style ::...

A brief discussion on this.$store.state.xx.xx in Vue

Table of contents Vue this.$store.state.xx.xx Get...

Summary of how to add root permissions to users in Linux

1. Add a user . First, use the adduser command to...

MYSQL slow query and log settings and testing

1. Introduction By enabling the slow query log, M...

The submit event of the form does not respond

1. Problem description <br />When JS is use...

CSS flexible layout FLEX, media query and mobile click event implementation

flex layout Definition: The element of Flex layou...

vue-admin-template dynamic routing implementation example

Provide login and obtain user information data in...

Table paging function implemented by Vue2.0+ElementUI+PageHelper

Preface I have been working on some front-end pro...