Problem description:const [textList, setTextList] = useState(original array); setTextList(new array); When modifying the original array, if the original array is a deep array (more than one layer), using setTextList to modify it will not trigger a page refresh Cause Analysis:This involves the knowledge of mutable objects and immutable objects. In Vue and React, if you update a mutable object, it may cause the view to update. This is because Vue and React are shallow listeners by default, and only listen to the first layer of data. Changes in the inner layer data will not be monitored. Solution:My solution here is to first make a deep copy of the original array, assign it to the new array, then modify the new array and pass the modified new array in, which will cause the view to update. var lists = textList.concat(); lists.splice(index, 1); setTextList(lists); Supplement: In react, useState updates do not render components when hooks are used When using react and writing components like the one shown in the figure, I found a critical problem. When I choose to write it with class, it is easy to update the rendering through the component. Now that the problem has been solved, let's go back and see what happened. . . The above is the detailed solution to the problem that the setState update page of react pure function component does not refresh. For more information about the react useState page not refreshing, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: VMware vsphere 6.5 installation tutorial (picture and text)
This article shares the specific code of node+exp...
How can you find the location of the configuratio...
Table of contents Preface 1. Use global unified o...
1. Add a hard disk 2. Check the partition status:...
Master-slave synchronization, also called master-...
Configure Java environment variables Here, the en...
I knew before that to synchronously obtain the re...
Table of contents 1. Create a table 1.1. Basic sy...
Today I installed the MySQL database on my comput...
Table of contents 1. Using Set()+Array.from() 2. ...
Table of contents 1.Json string 1.1Json Syntax 1....
Recently, I started upgrading my blog. In the proc...
MySQL 8 brings a brand new experience, such as su...
First download the zip archive version from the o...
Table of contents Hidden Problems Solution to ada...