To understand the role of key in React, we can start with the value of key. The value of key can be divided into three types: indefinite value, index value, and definite and unique value. In the following code, the value of key is an indefinite value (Math.random()) Question: When the button is clicked, will the color of the span turn red?import React, { useState } from 'react'; function App() { const [initMap, setInitMap] = useState([1,2,3,4]); const handleClick = () => { setInitMap([1,2,3,4]) var spanEle = document.getElementsByTagName('span'); Array.from(spanEle).map(it => it.style.color = 'red') } return ( <div className="App" id="app"> { initMap.map((it,index) => <div key={Math.random()}><span>color</span></div>) } <button onClick={() => handleClick()}></button> </div> ); } export default App; The answer is: No This problem involves react rendering mechanism and diff algorithm The official website has the following rules for diff:
Analyze the above problems:When the button is clicked, setInitMap([1,2,3,4]) will cause rendering. When rendering, a new virtual DOM will be generated. However, the span element obtained at this time is the previous element (because setInitMap is executed asynchronously), so the new and old DOMs will be compared.
The div here is a list. Compared with the fourth diff rule, react will determine whether to update the real DOM based on the key. key={Math.random()}, if the values of the new and old doms are inconsistent, the div will be regenerated. We added a red style to the element before the update, so the recreated element will not have this style. The effect is as follows The second case: the key value is the index valueThe result of our analysis above is that due to the change of key, the div element will be regenerated when rendering. What if the key remains unchanged before and after render? For example, change key to index Question: Will the color of the span change after the button is clicked in this code? return ( <div className="App" id="app"> <Spin spinning={spin}></Spin> { initMap.map((it,index) => <div key={index}><span>color</span></div>) } <button onClick={() => handleClick()}></button> </div> ); Answer: Yes Analysis: Because the index remains unchanged before and after render, the div will not be regenerated. Then compare the span element. The attributes of the span element change before and after render, so react will only apply new attributes to the span element, but they still point to the previous element. The third case: the key value is determined and unique:In this example, by setting the key to index, the color of the span changes, but when using keys, the React official website does not recommend using index. Modify the above code const [initMap, setInitMap] = useState([1,2,3,4]); const handleClick = () => { setInitMap([3,2,1,4]) } return ( <div className="App" id="app"> { initMap.map((it,index) => <div key={index}><input type="radio" />{it}</div>) } <button onClick={() => handleClick()}>Click</button> </div> ); } When initializing, select the button with value 3 Click the button The expected effect is that the button with a value of 3 is still selected, but now it becomes the button with a value of 1. analyze:
If we want to achieve the desired effect, we need to set a unique and certain keyTest 1: { initMap.map((it) => <div key={it}><input type="radio" />{it}</div>) } Select the third button during initialization Click the button This is the expected effectThink about it, what effect will it have if you set the key to Math.random()? Will the button's state be preserved? Before clicking: After clicking: The radio state is not preserved.Through the above examples, we can probably understand the role of key in React. The following content is some expansion of React knowledge points Extended content: The code at the beginning of the article also involves two other knowledge points of React, one is the React rendering conditions mentioned above, and the other is the operation of the real DOM; Extension 1: React rendering conditions import './App.css'; import React, { useState } from 'react'; function App() { const [initMap, setInitMap] = useState([1,2,3,4]); const [spin, setSpin] = useState(false); const handleClick = () => { setSpin(true); //Changed part var spanEle = document.getElementsByTagName('span'); Array.from(spanEle).map(it => it.style.color = 'red') setSpin(false); //Change part} return ( <div className="App" id="app"> <Spin spinning={spin}></Spin> { initMap.map((it,index) => <div key={Math.random()}><span>{it}</span></div>) } <button onClick={() => handleClick()}></button> </div> ); } export default App; The test results are as follows before clicking: After clicking: In this code, the key of div still uses Math.random(), but the state of initMap has not changed, so it is not re-rendered. At this time, div will not be destroyed and rebuilt. Extension 2: Is it possible to operate on the real DOM?In React, the emergence of virtual DOM is to reduce the operation on the real DOM, because the real DOM element is a more complex object, and the operation requires a lot of calculation. In the code above, we directly manipulate the DOM node and change the style, which is not advisable. Since React renders pages based on changes in state and props, it is better to control page rendering through state. The modified code is as follows: function App() { const [initMap, setInitMap] = useState([1,2,3,4]); const [spin, setSpin] = useState(false); const [showColor, setShowColor] = useState(false); const handleClick = () => { setInitMap([3,2,1,4]); setShowColor(true); } return ( <div className="App" id="app"> <Spin spinning={spin}> { initMap.map((it,index) => <div key={Math.random()}><span className={showColor && 'span-color'}>color</span></div>) } </Spin> <button onClick={() => handleClick()}>Click</button> </div> ); } At this time, span is a controlled component, and the rendering of the element can be controlled by the state of showColor Before clicking: After clicking: After using state to control rendering, the amount of code will be reduced, and the results will meet expectations Summarize
The above is a detailed explanation of the role of key in React. For more information about the role of React key, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to configure two-way certificate verification on nginx proxy server
In the past, creating a printer-friendly version ...
The default storage directory of mysql is /var/li...
Table of contents 1. beforeunload event 2. Unload...
Table of contents Complex query and step-by-step ...
Install boost There are many ways to call C/C++ f...
In MySQL, how do you view the permissions a user ...
Table of contents What is JSON Why this technolog...
Among classic color combinations, probably no one...
The temperament of a web front-end website is a fe...
Overflow Hide It means hiding text or image infor...
tar backup system sudo tar cvpzf backup.tgz --exc...
The main text page of TW used to have a width of 8...
Introduction to Flex Layout Flex in English means...
Organize the MySQL 5.5 installation and configura...
Table of contents 1. Differences between option A...