此错误是由于 useEffect 函数中返回某些内容而导致的。
useEffect 函数中只能返回任何内容或清理函数:
错误用法:
useEffect(()=>getData(),[]) async function getData() { const url = "http://localhost:8080/hello"; try { const response = await fetch(url); setData(response) } catch (error) {} }
getData 返回一个承诺,因为它被声明为异步。当异步操作(如获取)完成时,这个承诺最终将得到解决。
无法在 useEffect 函数中返回承诺。只返回任何内容或清理函数。
正确用法:在useEffect中编写异步函数并调用它们,使useEffect函数不返回任何内容。
useEffect(() => { async function getData() { const url = "http://localhost:8080/hello"; try { const response = await fetch(url); setData(response); } catch (error) {} } getData(); }, []);
以上是useEffect 不得返回除用于清理的函数之外的任何内容。的详细内容。更多信息请关注PHP中文网其他相关文章!