我知道你可以通过传递一个数组作为可选的第二个参数来告诉 React 跳过一个效果。
例如:
useEffect(() => {
document.title = `You clicked ${count} times`;
}, [count]); // Only re-run the effect if count changes
但是如果我想控制比较呢?添加我自己的比较逻辑。
我希望像 React.memo
这样你可以将函数作为第二个参数传递。
原文由 Idan Dagan 发布,翻译遵循 CC BY-SA 4.0 许可协议
在上面的评论中, Gabriele Petrioli 链接到 React.memo 文档,该文档解释了如何实现 shouldComponentUpdate。我在谷歌搜索 shouldComponentUpdate + useEffect + “react hooks” 的组合,结果出现了。因此,在使用链接文档解决了我的问题后,我想我也会将信息带到这里。
这是实现 shouldComponentUpdate 的旧方法:
新的 React Hooks 方式:
我知道您可能在您的问题中要求更多,但是对于来自 Google 并正在寻找如何使用 React Hooks 实现 shouldComponentUpdate 的任何人,您就可以了。
文档在这里: how-do-i-implement-shouldcomponentupdate