gpt4 book ai didi

reactjs - 在 react 中使用 useState 钩子(Hook)时设置后立即读取组件状态

转载 作者:行者123 更新时间:2023-12-05 08:31:27 26 4
gpt4 key购买 nike

这个 console.log 不工作:它只会打印以前的状态值,因为 setasync

const SomeCompo = () => {
const [count, set] = useState(0);
const setFun = () => {
console.log(count);
set(count + 1);
console.log(count);
}
return <button onClick={setFun}>count: {count}</button>
}

我必须在渲染本身中读取计数:

const SomeCompo = () => {
const [count, set] = useState(0);
console.log(count);
const setFun = () => {
set(count + 1);
}
return <button onClick={setFun}>count: {count}</button>
}

有没有更好的方法来读取值,因为我不想对每个渲染进行控制台。

最佳答案

您可以使用 useEffect为此,

useEffect(() => {
console.log(count);
}, [count]) //[count] is a dependency array, useEffect will run only when count changes.

关于reactjs - 在 react 中使用 useState 钩子(Hook)时设置后立即读取组件状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58047171/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com