最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React hooks useMemo, false as dependency - Stack Overflow

programmeradmin0浏览0评论

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
Add a ment  | 

2 Answers 2

Reset to default 8 +50

Is 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
发布评论

评论列表(0)

  1. 暂无评论