使用 React 16.8.6(在以前的版本 16.8.3 上很好),当我尝试防止获取请求上的无限循环时出现此错误:
./src/components/BusinessesList.js
Line 51: React Hook useEffect has a missing dependency: 'fetchBusinesses'.
Either include it or remove the dependency array react-hooks/exhaustive-deps
我一直无法找到停止无限循环的解决方案。我想远离使用useReducer()
. 我确实找到了这个讨论[ESLint] 'exhaustive-deps' lint rule #14920 的反馈,其中一个可能的解决方案是You can always // eslint-disable-next-line react-hooks/exhaustive-deps if you think you know what you're doing.
我对自己正在做的事情没有信心,所以我还没有尝试实施它。
我有这个当前设置,React hook useEffect 永远/无限循环持续运行,唯一的评论是useCallback()
我不熟悉的。
我目前的使用方式useEffect()
(我只想在开始时运行一次,类似于componentDidMount()
):
useEffect(() => {
fetchBusinesses();
}, []);
const fetchBusinesses = () => {
return fetch("theURL", {method: "GET"}
)
.then(res => normalizeResponseErrors(res))
.then(res => {
return res.json();
})
.then(rcvdBusinesses => {
// some stuff
})
.catch(err => {
// some error handling
});
};