在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
一、如何批量更新在【Hooks】中如果单独的进行状态的更新可能会导致页面的多次渲染: import { useState } from 'react'; import { unstable_batchedUpdates } from 'react-dom';//批量更新状态时使用 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('渲染了') return ( <span>请查看控制台输出!</span> ); } export default Example; 控制台输出
所以需要使用批量更新来避免这个问题!
import { useState } from 'react'; import { unstable_batchedUpdates } from 'react-dom';//批量更新状态时使用 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) }) // 这里就是处理的事件 }, 1000); console.log('渲染了') return ( <span>请查看控制台输出!</span> ); } export default Example; 控制台输出
二、Hooks如何获取路由参数有时候我们会在 <Route path="/test/:name" component={Statistics} /> 在Class中通过 如果是Hooks的话,可以这样获取: import { useState } from 'react'; import React from 'react'; const Example = ({ match }) => { const [name] = useState(match.params.name); return ( <p>名称为:<span style={{ fontWeight: 600 }}>{name}</span></p> ); } export default Example;
执行效果
|
请发表评论