Is React's setState asynchronous or something?

旧城冷巷雨未停 提交于 2019-12-29 08:53:28

问题


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

What gives?!


回答1:


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



来源:https://stackoverflow.com/questions/34820583/is-reacts-setstate-asynchronous-or-something

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!