https://zh-hans.reactjs.org/b...
componentWillMount → UNSAFE_componentWillMounthtml
componentWillReceiveProps → UNSAFE_componentWillReceivePropsreact
緣由:redux
props
未變化,依然會調用該函數方案dom
在render中處理最終須要的渲染相關數據函數
componentShouldUpdate
僅處理 props
相關使用getDerivedStateFromProps,僅會在渲染前調用,返回值應用於state
,不經過setState
隊列。設計
componentWillUpdate → UNSAFE_componentWillUpdatecode
緣由:component
setState
或者觸發react-redux
中的action
方案server
setState
等方法。