admin管理员组文章数量:1343983
Recently I came across some weird usage of useMemo hook:
const memo = useMemo(callback, false);
As a second argument, instead of dependency is passed false.
Is this a valid code? React documentation states that dependency should be an array. What is the purpose of using false?
Recently I came across some weird usage of useMemo hook:
const memo = useMemo(callback, false);
As a second argument, instead of dependency is passed false.
Is this a valid code? React documentation states that dependency should be an array. What is the purpose of using false?
Share Improve this question asked Sep 24, 2019 at 19:18 bearsiebearsie 1191 silver badge5 bronze badges 1- 1 not valid if you use ts :D – Mohit Yadav Commented Aug 24, 2020 at 8:16
2 Answers
Reset to default 8 +50Is this a valid code?
It depends on what you mean by valid
.
- syntactically correct: yes (javascript, typescript)
- allowed by tools: no (eslint, flow, typescript)
Is it a valid call to React API? no.
While this code works today, passing false
as dependency list is not mentioned in the documentation and the behaviour can change in any future react release.
In summary: update your code to useMemo(callback, [])
.
Actually I’ve analyzed react-reconsiler and it turnes out that above code is equivalent to this:
const memo = useMemo(callback, []);
That’s because of javascript quirks, where:
false.length = undefined;
false[1] = undefined;
So consequently:
undefined === undefined // true
本文标签: javascriptReact hooks useMemofalse as dependencyStack Overflow
版权声明:本文标题:javascript - React hooks useMemo, false as dependency - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743720275a2527448.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论