使用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]对“穷举-deps”lint规则#14920的反馈,其中一个可能的解决方案是You can always // eslint-disable-next-line react-hooks/exhaustive-deps if you think you know what you're doing.
我对我正在做的事情没有信心,所以我还没有尝试实现它。
我有这个当前的设置,React钩子useEffects永远连续运行/无限循环,唯一的评论是关于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
});
};