1. How to update in batchesIn [Hooks], updating the status separately may cause multiple renderings of the page: import { useState } from 'react'; import { unstable_batchedUpdates } from 'react-dom'; //Use when updating status in batches import React from 'react'; const Example = () => { const [count, setCount] = useState(0); const [count1, setCount1] = useState(0); const [isClick, setCount2] = useState(0); setTimeout(function () { setCount(1) setCount1(1) setCount2(1) }, 1000); console.log('rendered') return ( <span>Please check the console output! </span> ); } export default Example; Console Output
So you need to use batch updates to avoid this problem! This is implemented in import { useState } from 'react'; import { unstable_batchedUpdates } from 'react-dom'; //Use when updating status in batches import React from 'react'; const Example = () => { const [count, setCount] = useState(0); const [count1, setCount1] = useState(0); const [isClick, setCount2] = useState(0); setTimeout(function () { unstable_batchedUpdates(() => { setCount(1) setCount1(1) setCount2(1) }) // This is the event being processed}, 1000); console.log('rendered') return ( <span>Please check the console output! </span> ); } export default Example; Console Output
2. How Hooks Get Routing Parameters Sometimes we will specify parameters in <Route path="/test/:name" component={Statistics} /> In Class, you can get the parameters of the url through If it is Hooks, you can get it like this: import { useState } from 'react'; import React from 'react'; const Example = ({ match }) => { const [name] = useState(match.params.name); return ( <p>The name is: <span style={{ fontWeight: 600 }}>{name}</span></p> ); } export default Example;
Execution effect The above is the detailed content of the analysis of the example of batch updating state and obtaining routing parameters in ReactHooks. For more information about batch updating state and obtaining routing parameters in ReactHooks, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Summary of three ways to create new elements
The first web page I designed is as follows: I ha...
The current requirement is: there is a file uploa...
This article shares the installation tutorial of ...
This article is mainly for those who do not under...
Real-time replication is the most important way t...
Centos7 startup process: 1.post(Power-On-Self-Tes...
There are two meta attributes: name and http-equiv...
Table of contents background Technical Solution S...
When using Zabbix custom scripts to collect monit...
question Nginx takes $remote_addr as the real IP ...
Async Hooks is a new feature of Node8. It provide...
The detailed steps for installing mysql5.7.19 on ...
The browser is probably the most familiar tool fo...
Table of contents Preface start Preface The defau...
In fact, the three tables above all have three ro...