React 是否保持状态更新的顺序?
我知道 React 可以异步和批量执行状态更新以进行性能优化。因此,您永远不能相信在调用 后状态会更新。但是你能相信 React 会按照与 setState
调用相同的顺序更新状态吗?setState
- 相同的组件?
- 不同的组件?
请考虑单击以下示例中的按钮:
1. 对于以下情况,a 是假的,而 b 是真的,有没有可能:
class Container extends React.Component {
constructor(props) {
super(props);
this.state = { a: false, b: false };
}
render() {
return <Button onClick={this.handleClick}/>
}
handleClick = () => {
this.setState({ a: true });
this.setState({ b: true });
}
}
2. 对于以下情况,a 是假的,而 b 是真的,有没有可能:
class SuperContainer extends React.Component {
constructor(props) {
super(props);
this.state = { a: false };
}
render() {
return <Container setParentState={this.setState.bind(this)}/>
}
}
class Container extends React.Component {
constructor(props) {
super(props);
this.state = { b: false };
}
render() {
return <Button onClick={this.handleClick}/>
}
handleClick = () => {
this.props.setParentState({ a: true });
this.setState({ b: true });
}
}
请记住,这些是我的用例的极端简化。我意识到我可以以不同的方式执行此操作,例如,在示例 1 中同时更新两个状态参数,以及在示例 2 中对第一个状态更新的回调中执行第二个状态更新。但是,这不是我的问题,我只对 React 执行这些状态更新的明确定义的方式感兴趣,仅此而已。
任何由文档支持的答案都非常感谢。