This article is reprinted from the WeChat public account "JS Daily Question", the author is Huihui. Please contact the JS Daily Question public account to reprint this article. 1. What isWe can split the communication between components into two words:
Looking back at the Vue series of articles, components are one of the most powerful features of Vue, and componentization is also the core idea of React. Compared with Vue, React's components are more flexible and diverse, and can be divided into many types of components in different ways. Communication refers to the process by which a sender transmits information to a receiver in a certain format through a certain medium in order to achieve a certain purpose. In a broad sense, any information traffic is communication. Communication between components means that components transmit information in some way to achieve a certain purpose. 2. How to communicateThere are many ways to transfer components, which can be divided into the following according to the sender and receiver:
Passing from parent component to child component Since the data flow of React is one-way, passing from parent component to child component is the most common way When the parent component calls the child component, it only needs to pass parameters in the child component tag, and the child component can receive the parameters passed by the parent component through the props attribute
Child component passes to parent component The basic idea of child component communication with parent component is that the parent component passes a function to the child component, and then gets the value passed by the child component through the callback of this function The corresponding code of the parent component is as follows:
The corresponding code of the subcomponent is as follows:
Communication between sibling components If the data is transferred between sibling components, the parent component acts as an intermediate layer to achieve data intercommunication.
Passing from parent component to descendant component It is a common thing for a parent component to pass data to its descendant components, just like global data. Using context provides a way for components to communicate with each other, so that data can be shared and other data can read the corresponding data. Create a context by using React.createContext
After the context is successfully created, the Provider component exists under it to create the data source, and the Consumer component is used to receive data. The usage examples are as follows: The Provider component uses the value attribute to pass data to descendant components:
If you want to get the data passed by the Provider, you can receive it through the Consumer component or use the contextType property, which are as follows:
Consumer component:
Non-relational component transfer If the relationship between components is complex, it is recommended to manage the data in a global resource to achieve communication, such as redux. The use of redux will be introduced in detail later. ConclusionSince React is a one-way data flow, the main idea is that components will not change the data they receive, but only listen for changes in the data. When the data changes, they will use the new value they received instead of modifying the existing value. Therefore, it can be seen that during the communication process, the storage location of the data is stored in the parent location References https://react.docschina.org/docs/context.html |
<<: A brief history of the development of the iSCSI storage protocol
>>: Viavi: Global 5G deployments to grow by more than 20% in 2021
[[409633]] This article is reprinted from the WeC...
What is non-cellular 5G? I imagine most readers a...
EtherNetservers is a foreign hosting company foun...
The discussion on China Unicom's predicament ...
Hello everyone, I am Xiaolin. A reader was asked ...
As the infrastructure of the Internet, CDN has be...
No two networks are designed and built alike. One...
[[415300]] After using microservices, many proble...
EtherNetservers is a foreign hosting company that...
In IoT applications, data processing, analysis, a...
5G is getting closer and closer to us. On the 18t...
Digital transformation has increased the importan...
Cybersecurity experts believe that blockchain, th...
Due to advances in the Internet of Things (IoT) a...
[[357457]] This article is reprinted from the WeC...