搜索...
一个返回一个指向最新值的 ref 的 React Hook,它可以用来避免在定时器回调或异步上下文中出现过期闭包。
const latest = useLatest(count) console.log(latest.current) // 最新的 count const latest = useLatest({ callback, options }) console.log(latest.current.callback) // 最新的 callback console.log(latest.current.options) // 最新的 options
点击下方链接跳转 GitHub 查看源代码。
const latest = useLatest(value)
你想要追踪的任何值。
一个 React ref (React.MutableRefObject<T>)
React.MutableRefObject<T>