react新特性(生命周期变化)

2018-08-11  本文已影响1195人  yiludege

按照官方文档

目前react的mount阶段,将按以下顺序调用这些方法:

该方法只要父组件调用了render方法就会调用(会判断oldProps !== newProps),换句话来说,对于父组件没有render,子组件的该生命周期就不会调用。

遗留方法
* UNSAFE_componentWillMount()


取消UNSAFE_componentWillMount()的原因:


getSnapshotBeforeUpdate(props, state)不传递preProps原因:


update阶段,将按以下顺序调用这些方法:

遗留方法
* UNSAFE_componentWillUpdate(nextProps, nextState)
* UNSAFE_componentWillReceiveProps(preProps, preState)


取消UNSAFE_componentWillReceiveProps(preProps, preState) ,UNSAFE_componentWillUpdate(nextProps, nextState)原因:


卸载阶段,将调用下面生命周期:


Derive state 生命周期会有固有的问题:

UNSAFE_componentWillReceiveProps(preProps, preState),static getDerivedStateFromProps(props, state)


Derive state生命周期中没有条件的直接接受父组件的props危害如下:

  • 如果子组件是一个input元素,自身输入会改变state的值,也接受父组件的props来修改state,如果组件通过输入有了新的state,副组件的props保存的是旧的数据,一旦父组件setState,那么子组件刚才的输入的state的值就会被父组件的旧的数据覆盖从而丢失了数据
  • 可以通过对比nextPropsthis.props来避免这个问题,但是又会引入新的问题,特别是当组件被复用的时候,对比的结果会导致组件无法更新

解决办法:

  • key的办法来从新reset组件;假如不想重新渲染组件,也可以使用的key作为一个props的属性来使用Derive state生命周期进行reset过程,
  • 采用ref的方法直接调实例方法

参考
You Probably Don't Need Derived State

上一篇下一篇

猜你喜欢

热点阅读