Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

javascript - Is React's setState asynchronous or something?

Hmm. I'm using setState and for some reason the code following it doesn't have access to the new state!

What gives?!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Yeap. It's asynchronous. I'm posting this because this isn't really immediately obvious to new React users.

React "queues" updates to a component's state.

If you need to execute a code block that's dependent on the new state change, pass a callback like so:

getInitialState: function () {
  return {
    isFinalCountdown: false,
  }
}

//blablabla

//then somewhere you got...
this.setState(
  {isFinalCountdown: true},
  function () {//<--- whoa. this solves your all your synchrosity woes!
    console.log(this.state.isFinalCountdown); //true!
  }
);

console.log(this.state.isFinalCountdown); //false!

All of this is in the docs, it's just something that really needs to be reiterated to avoid those common bugs that new React users likely come across.

Check it out: https://facebook.github.io/react/docs/component-api.html#setstate


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.5k users

...