react性能优化

1–子组件生命周期函数 进行性能优化

 shouldComponentUpdate(nextProps, nextState) {
    if (nextProps.content !== this.props.content) {
      return true
    } else {
      return false
    }
  }

你可能感兴趣的:(react,生命周期函数,性能优化)