我目前正在尝试将最新更新获取到超时函数中。这意味着我想更新到而不必使用类似钩子的东西。c1useRef
const [c, s] = useState<number>(0)
const f = () => {
s(1)
setTimeout(() => console.log(c), 600)
}
return (
<div
style={{ width: '100%', height: '100%', backgroundColor: 'black' }}
onMouseEnter={f}
>
test
</div>
)
慕妹3242003
相关分类