React Native 中元件的生命週期
注:以下內容皆為複製,作為備份,僅供參考。
概述:
所謂生命週期,就是一個物件從開始生成到最後消亡所經歷的狀態,理解生命週期,是合理開發的關鍵。RN 元件的生命週期整理如下圖:
可以把元件生命週期大致分為三個階段:
- 第一階段:是元件第一次繪製階段,如圖中的上面虛線框內,在這裡完成了元件的載入和初始化;
- 第二階段:是元件在執行和互動階段,如圖中左下角虛線框,這個階段元件可以處理使用者互動,或者接收事件更新介面;
- 第三階段:是元件解除安裝消亡的階段,如圖中右下角的虛線框中,這裡做一些元件的清理工作。
生命週期回撥函式
簡單介紹:
getDefaultProps
object getDefaultProps()
執行過一次後,被建立的類會有快取,對映的值會存在this.props
,前提是這個prop不是父元件指定的
這個方法在物件被建立之前執行,因此不能在方法內呼叫this.props
,另外,注意任何getDefaultProps()
返回的物件在例項中共享,不是複製
getInitialState
object getInitialState()
控制元件載入之前執行,返回值會被用於state的初始化值
componentWillMount
void componentWillMount()
執行一次,在初始化render
之前執行,如果在這個方法內呼叫setState
,render()
render
ReactElement render()
render的時候會呼叫render()
會被呼叫
呼叫render()
方法時,首先檢查this.props
和this.state
返回一個子元素,子元素可以是DOM元件或者其他自定義複合控制元件的虛擬實現
如果不想渲染可以返回null或者false,這種場景下,react渲染一個<noscript>
標籤,當返回null或者false時,ReactDOM.findDOMNode(this)
返回nullrender()
方法是很純淨的,這就意味著不要在這個方法裡初始化元件的state,每次執行時返回相同的值,不會讀寫DOM或者與伺服器互動,如果必須如伺服器互動,在componentDidMount()
render()
方法純淨使得伺服器更準確,元件更簡單
componentDidMount
void componentDidMount()
在初始化render之後只執行一次,在這個方法內,可以訪問任何元件,componentDidMount()
方法中的子元件在父元件之前執行
從這個函式開始,就可以和 js 其他框架互動了,例如設定計時 setTimeout 或者 setInterval,或者發起網路請求
shouldComponentUpdate
boolean shouldComponentUpdate(
object nextProps, object nextState
}
這個方法在初始化render
時不會執行,當props或者state發生變化時執行,並且是在render
之前,當新的props
或者state
不需要更新元件時,返回false
shouldComponentUpdate: function(nextProps, nextState) {
return nextProps.id !== this.props.id;
}
當shouldComponentUpdate
方法返回false時,就不會執行render()
方法,componentWillUpdate
和componentDidUpdate
方法也不會被呼叫
預設情況下,shouldComponentUpdate
方法返回true防止state
快速變化時的問題,但是如果·state
不變,props
只讀,可以直接覆蓋shouldComponentUpdate
用於比較props
和state
的變化,決定UI是否更新,當元件比較多時,使用這個方法能有效提高應用效能
componentWillUpdate
void componentWillUpdate(
object nextProps, object nextState
)
當props
和state
發生變化時執行,並且在render
方法之前執行,當然初始化render時不執行該方法,需要特別注意的是,在這個函式裡面,你就不能使用this.setState
來修改狀態。這個函式呼叫之後,就會把nextProps
和nextState
分別設定到this.props
和this.state
中。緊接著這個函式,就會呼叫render()
來更新介面了
componentDidUpdate
void componentDidUpdate(
object prevProps, object prevState
)
元件更新結束之後執行,在初始化render
時不執行
componentWillReceiveProps
void componentWillReceiveProps(
object nextProps
)
當props
發生變化時執行,初始化render
時不執行,在這個回撥函式裡面,你可以根據屬性的變化,通過呼叫this.setState()
來更新你的元件狀態,舊的屬性還是可以通過this.props
來獲取,這裡呼叫更新狀態是安全的,並不會觸發額外的render
呼叫
componentWillReceiveProps: function(nextProps) {
this.setState({
likesIncreasing: nextProps.likeCount > this.props.likeCount
});
}
componentWillUnmount
void componentWillUnmount()
當元件要被從介面上移除的時候,就會呼叫componentWillUnmount()
,在這個函式中,可以做一些元件相關的清理工作,例如取消計時器、網路請求等