React implements multi-component value transfer function through conetxt

React implements multi-component value transfer function through conetxt

The effect of this function is similar to vue的provide/inject
React can be done through context

insert image description here

Define a public file context/Theme.jsx

import { createContext } from 'react';
const theme = createContext()
export default theme

The parent component imports public files and child components and passes theme值

import React, { useState } from 'react';
import Child from "@/components/Child.jsx"
import Theme from "@/context/Theme.jsx"
export default () => {
    const [theme, setTheme] = useState("blue")
    return (
        <>
            <button onClick={() => setTheme("green")}>Check if context is responsive</button>
            <Theme.Provider value={theme}>
                <Child />
            </Theme.Provider>
        </>
    )
}

Child component gets data components/Child.jsx

import React from 'react';
import Theme from "@/context/Theme.jsx"
export default () => {
    return (
        <Theme.Consumer>
            {data => <p>Receive the value passed by the parent component context: {data}</p>}
        </Theme.Consumer>
    );
}

This concludes this article about React’s multi-component value transfer through conetxt. For more information about React’s multi-component value transfer, please search 123WORDPRESS.COM’s previous articles or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of the relationship between React component value passing
  • Three ways to pass values ​​in react components
  • Detailed explanation of value transfer between Vue and React components
  • React method of passing values ​​between parent and child components
  • React child component transfers value to parent component

<<:  CSS techniques for achieving multi-column equal height layout that the front end should master

>>:  How to make ApacheBench support multi-url

Recommend

Using Docker to create static website applications (multiple ways)

There are many servers that can host static websi...

Various methods to implement the prompt function of text box in html

You can use the attribute in HTML5 <input="...

Detailed explanation of gcc command usage under Linux system

Table of contents 1. Preprocessing 2. Compilation...

Full analysis of web page elements

Relative Length Units em Description: Relative len...

Vue uses Canvas to generate random sized and non-overlapping circles

Table of contents Canvas related documents Effect...

Summary of the use of Datetime and Timestamp in MySQL

Table of contents 1. How to represent the current...

Steps for packaging and configuring SVG components in Vue projects

I just joined a new company recently. After getti...

Several principles for website product design reference

The following analysis is about product design pr...

Bootstrap 3.0 study notes CSS related supplement

The main contents of this article are as follows:...

Summary of methods for inserting videos into HTML pages

Now if you want to use the video tag in a page, y...

CSS implements five common 2D transformations

2D transformations in CSS allow us to perform som...

Vue implements dynamic circular percentage progress bar

Recently, when developing a small program, I enco...

Centering the Form in HTML

I once encountered an assignment where I was give...

Introduction to Vue3 Composition API

Table of contents Overview Example Why is it need...