Caught Error 错误,而使用 useEffect 反应本机 HOOks

Caught Error error while using useEffect react native HOOks

所以我正在尝试使用异步存储并尝试验证它们是否是异步数据.. here is my code here is the error

我无法验证...

您应该在代码之外调用挂钩

   const readData = ...


   useEffect(() => {
     const timeout = setTimeout(() => readData(), 5000)
     return () => { clearTimeout(timeout) }
   }, [])


下次 post 代码题。