這次帶給大家React內render案例詳解,React內render使用的注意事項有哪些,以下就是實戰案例,一起來看一下。
我們都知道Render在元件實例化和存在期時都會被執行。實例化在componentWillMount執行完成後就會被執行,這個沒什麼好說的。在這裡我們主要分析存在期元件更新時的執行。
存在期的方法包含:
- componentWillReceiveProps
- shouldComponentUpdate
#- componentWillUpdate
- render
- componentDidUpdate
這些方法會在元件的狀態或屬性發生變化時被執行,如果我們使用了Redux,那麼就只有當屬性改變時被執行。下面我們將從幾個場景來分析屬性的變化。
首先我們建立了HelloWorldComponent,程式碼如下所示:
import * as React from "react"; class HelloWorldComponent extends React.Component { constructor(props) { super(props); } componentWillReceiveProps(nextProps) { console.log('hello world componentWillReceiveProps'); } render() { console.log('hello world render'); const { onClick, text } = this.props; return ( <button onClick={onClick}> {text} </button> ); } } HelloWorldComponent.propTypes = { onClick: React.PropTypes.func, }; export default HelloWorldComponent;
AppComponent元件的程式碼如下:
class MyApp extends React.Component { constructor(props) { super(props); this.onClick = this.onClick.bind(this); } onClick() { console.log('button click'); this.props.addNumber(); } render() { return ( <HelloWorld onClick={this.onClick} text="test"></HelloWorld> ) } } const mapStateToProps = (state) => { return { count: state.count } }; const mapDispatchToProps = { addNumber }; export default connect(mapStateToProps, mapDispatchToProps)(MyApp);
這裡我們使用了Redux,但是程式碼就不貼出來了,其中addNumber方法會每次點擊時將count加1。
這時候當我們點擊button時,你覺得子群組HelloWorldComponent的render方法會被執行嗎?
如圖所示,當我們點選button時,子元件的render方法被執行了。可是從程式碼來看,元件綁定的onClick和text都沒有改變啊,為何元件會更新呢?
如果在子元件的componentWillReceiveProps加入這個log:console.log(‘isEqual', nextProps === this.props); 輸出會是true還是false呢?
是的,你沒有看錯,輸出的是false。這也是為什麼子元件會更新了,因為屬性值發生了變化,並不是說我們綁定在元件上的屬性值。每次點擊button時會觸發state發生變化,進而整個元件重新render了,但這並不是我們想要的,因為這不必要的渲染會極度影響我們應用的效能。
在react中除了繼承Component建立元件之外,還有個PureComponent。透過該組件就可以避免這種情況。下面我們對程式碼做點修改再來看效果。修改如下:
class HelloWorldComponent extends React.PureComponent
這次在點擊button時發生了什麼事?
雖然componentWillReceiveProps還是會執行,但這次元件沒有重新render。
所以,我們對於無狀態元件,我們應該盡量使用PureComponent,需要注意的是PureComponent只專注在屬性值,也表示物件和陣列發生了變化是不會觸發render的。
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是React內render案例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!