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

javascript - Why do I need an extra set of parentheses for React .setState()? - Stack Overflow

programmeradmin2浏览0评论

I'm going through the "Quick Start" portion of React's website, and it uses code that looks something like this:

toggleClicked() {
    this.setState(prev => ({
        isOn: !prev.isOn
    }));
}

Why do I need the extra parentheses around the function block? I would think that it would look like this:

toggleClicked() {
    this.setState(prev => {
        isOn: !prev.isOn
    });
}

But this doesn't work. What do these parentheses mean?

I'm going through the "Quick Start" portion of React's website, and it uses code that looks something like this:

toggleClicked() {
    this.setState(prev => ({
        isOn: !prev.isOn
    }));
}

Why do I need the extra parentheses around the function block? I would think that it would look like this:

toggleClicked() {
    this.setState(prev => {
        isOn: !prev.isOn
    });
}

But this doesn't work. What do these parentheses mean?

Share Improve this question asked Mar 23, 2018 at 3:06 JakAttk123JakAttk123 1,8063 gold badges12 silver badges20 bronze badges 2
  • 2 This is because the code inside braces ({}) is parsed as a sequence of statements. – guijob Commented Mar 23, 2018 at 3:14
  • in short, its saying the {} are not the start of a function body, but are a dictionary. Since there are no other parameters, this is just saying 'return the dictionary'. – john k Commented Oct 8, 2024 at 19:09
Add a ment  | 

2 Answers 2

Reset to default 12

The interpreter considers the { after => to be the start of a function block, rather than an object - so, wrap it in parentheses to make it clear that you're returning an object there, rather than defining a function.

this.setState(prev => ({
    isOn: !prev.isOn
}));

The braces around isOn: !prev.isOn is the object literal notation.

The parentheses immediately surrounding that is mandatory to indicate that the above braces represent an object literal instead of a function body. This distinction is necessary because the right hand side of a "fat arrow" (=>) can either be a proper function body (surrounded by braces) or an expression (which is an implicit return). In the latter case, it's possible for that expression to be an object literal, which will be confusing for the parser (I'm sure the TC 39 mittee studied the language grammar and concluded that it's not possible for the parser to distinguish the two use cases without the help of explicit parentheses).

The next outer parentheses are the delimiters of the arguments passed to setState.

The outer most pair of braces are the delimiters of the function body of toggleClicked.

发布评论

评论列表(0)

  1. 暂无评论