1. React Hooks vs. Pure FunctionsTo put it simply, React Hook is some new APIs added in React V18.6. The essence of API is to provide a function interface for certain functions. Therefore, React Hooks are functions, but React Hooks are not pure functions. What is a pure function? That is, this function must produce the same output when the input value is the same, and this function cannot affect external data. The functional API provided by React Hooks is not a pure function. So what is it that makes React Hooks not pure functions? In fact, it is determined by the React framework and the function component itself. We know that the principle of React page rendering is to get a new virtual DOM each time you render, and then perform DOM Diff to render the page. React's functional component gets a virtual DOM by executing the entire function. Therefore, every time the page is rendered, all statements inside the function component will be re-executed. If the React Hooks used inside the functional component are pure functions, you will not get a different virtual DOM after each rendering. React stipulates that all React components must be pure functions and are prohibited from modifying their own props. Therefore, before React V16.8, when React Hooks were not yet released, function components, because they were pure functions, could only return a fixed virtual DOM, could not contain states, and did not support lifecycle methods. Therefore, at that time, only function components were supported. However, function components had too many restrictions compared to class components. Function components could not replace class components, nor were they as easy to use as class components. React wants components to be simple rather than complex. React believes that the best way to write components should be functions rather than classes. Therefore, React added React Hooks. Hook means hook, which is provided by React to function components to "hook" external functions and data status when they are needed, thereby improving function components and enabling them to completely replace class components. React's function components can only be pure functions, so the task of getting a different virtual DOM when re-rendering the function components every time an event occurs is completely left to React Hooks. So how does React Hooks do it? Next, we will manually implement a useState. The specific details of useState are definitely different, but the principles and ideas are the same. 2. Simple myUseState The first execution of React.useState assigns the initial value to a _state, and each subsequent re-render reads the value of _state. What setState in [state, setState] does is to change the value of _state and then re-render the page. import React from 'react'; import ReactDOM from 'react-dom'; let _state function myUseState(initialValue){ if(_state === undefined){ _state = initialValue } const setState = (newValue)=>{ _state = newValue render() } return [_state, setState] } function render(){ ReactDOM.render(<App/>,document.getElementById('root')); } function App(){ const [n, setN] = myUseState(0) return ( <div> n: {n} <button onClick={() => setN(n+1)}>+1</button> </div> ) } ReactDOM.render(<App/>,document.getElementById('root')); 3. Improve myUseState The myUseState implemented above has a bug. When myUseState is used twice in a function component, a problem will occur. The two will share the same _state, which will cause confusion. import React from 'react'; import ReactDOM from 'react-dom'; let _state = [] let index = 0 function myUseState(initialValue){ const currentIndex = index if(_state[currentIndex] === undefined){ _state[currentIndex] = initialValue } const setState = (newValue)=>{ _state[currentIndex] = newValue render() } index++ return [_state[currentIndex], setState] } function render(){ index = 0 ReactDOM.render(<App/>,document.getElementById('root')); } function App(){ const [n, setN] = myUseState(0) const [m, setM] = myUseState(0) return ( <div> n: {n} <button onClick={() => setN(n+1)}>+1</button> <br/> m: {m} <button onClick={() => setM(m+1)}>+1</button> </div> ) } ReactDOM.render(<App/>,document.getElementById('root')); 4. Hooks rules triggered by implementation principles The myUseState implemented above is definitely not the specific implementation code of React.useState, but the implementation principle is the same. The myUseState function encapsulates the data state within the function component and manages the state, exposing the relevant operation interface for the function component to use. From the above implementation ideas, we can find that the implementation of React Hooks is actually a special function based on global variables and closure principles. However, it is precisely because of this implementation method that the use of React Hooks is limited to calling Hooks only at the top level, which means that Hooks should not be called in loops, conditions, or nested functions. If Hooks are used in if conditional statements, the number of executions of the React.useState statement will be incorrect each time the component is rendered, which will disrupt the index count and cause data maintenance errors. The above implementation principle relies on the correct counting of indexes, so React relies on the order in which Hooks are called. The above is a detailed explanation of how React Hooks work. For more information about React Hooks, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Using MySQL database with Python 3.4 under Windows 7
>>: Django uses pillow to simply set up verification code function (python)
Table of contents 1. Introduction to v-slot 2. An...
<br />This is an article I collected a long ...
Although Microsoft has done a lot of research and ...
Table of contents WXS Response Event Plan A Page ...
ref definition: used to register reference inform...
Table of contents 1. Where is the self-incremente...
How to view files in a docker image 1. If it is a...
The table is as follows: Code when Unity reads an...
Scenario You need to authorize the tester to use ...
How to determine whether the current Linux system...
Since its launch in 2009, flex has been supported...
Preface After this blog post was published, some ...
In front-end development, $ is a function in jQue...
An event is an action performed by the user or th...
What is ORM? ORM stands for Object Relational Map...