生命周期及其他:
挂载:
- constructor super(this) 从父组件继承的this、否则无法使用this
- componentWillMount 将废弃
- 递归 子组件
- render 不要做新建object等副作用的操作
- componentDidMount
更新:
-
componentWillReceiveProps
-
componentWillUpdate 将废弃
-
shouldComponentUpdate:return false不往后执行
-
递归 子组件
-
render
-
componentDidUpdate
-
componentWillUnmount 定时器清除等
其他:
-
getDirevedStateFromError
cache当前组件的error,不影响组件树的其他组件
可以通过设置state,控制render,做展示的降级处理 -
componentDidCache
记录组件错误,一般配合上个direved...使用 -
getSnapshot。。。。
网友评论