其他分享
首页 > 其他分享> > 奇怪的setState

奇怪的setState

作者:互联网

奇怪的setState

使用 this.setState() 来时刻更新组件 state:
首先我们去了解setState()的三种情况:

  1. 不要直接修改state
// 此代码不会重新渲染组件:
this.state.comment = 'Hello';

这个时候我们应该使用this.setState()来进行修改state的值

// 此代码可以重新渲染组件
this.setState({comment: 'Hello'});

构造函数是唯一可以给 this.state 赋值的地方。

2.State 的更新可能是异步的

出于性能考虑,React 可能会把多个 setState() 调用合并成一个调用。
因为 this.props 和 this.state 可能会异步更新,所以你不要依赖他们的值来更新下一个状态。

// 例如这样就无法计算
this.setState({
  counter: this.state.counter + this.props.increment,
});

要解决这个问题,可以让 setState() 接收一个函数而不是一个对象。这个函数用上一个 state 作为第一个参数,将此次更新被应用时的 props 做为第二个参数:

// 调用 state props 进行改变
this.setState((state, props) => ({
  counter: state.counter + props.increment
}));

也可以使用普通函数

this.setState(function(state, props) {
  return {
    counter: state.counter + props.increment
  };
});

3.State 的更新会被合并

当你调用 setState() 的时候,React 会把你提供的对象合并到当前的 state。

// 例如,你的 state 包含几个独立的变量:
  constructor(props) {
    super(props);
    this.state = {
      posts: [],
      comments: []
    };
  }
  // 然后你可以分别调用 setState() 来单独地更新它们:
    componentDidMount() {
    fetchPosts().then(response => {
      this.setState({
        posts: response.posts
      });
    });

    fetchComments().then(response => {
      this.setState({
        comments: response.comments
      });
    });
  }

这里的合并是浅合并,所以 this.setState({comments}) 完整保留了 this.state.posts, 但是完全替换了 this.state.comments。

采用react官网学习

标签:counter,posts,comments,state,props,奇怪,setState
来源: https://blog.csdn.net/weixin_45760365/article/details/120720728