我在useEffect中把state状态赋值给ref对象的current属性,也就是说这个preCountUseRef.current拿到最新的state值,可是在DOM中显示上次的state值
相关代码
import React, { useState, useRef, useEffect } from 'react'
const App = () => {
const [count, setCount] = useState(0)
const preCountUseRef = useRef(count)
useEffect(() => {
preCountUseRef.current = count
})
return (
<div>
<p>precount: {preCountUseRef.current}</p>
<p>You clicked {count} times</p>
<button onClick={() => setCount(() => count + 1)}>Click me</button>
</div>
)
}
export default App
能否详细说明一下useRef运行机制以及对官网解释的"useRef
就像是可以在其.current
属性中保存一个可变值的“盒子”。"这句话该怎么理解呢?
跟闭包原理差不多