真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

React中的render什么時(shí)候執(zhí)行過(guò)程

這篇文章主要介紹了React中的render什么時(shí)候執(zhí)行過(guò)程,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

專注于為中小企業(yè)提供成都網(wǎng)站制作、網(wǎng)站設(shè)計(jì)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)富民免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了成百上千企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

我們都知道Render在組件實(shí)例化和存在期時(shí)都會(huì)被執(zhí)行。實(shí)例化在componentWillMount執(zhí)行完成后就會(huì)被執(zhí)行,這個(gè)沒(méi)什么好說(shuō)的。在這里我們主要分析存在期組件更新時(shí)的執(zhí)行。

存在期的方法包含:

  1. - componentWillReceiveProps

  2. - shouldComponentUpdate

  3. - componentWillUpdate

  4. - render

  5. - componentDidUpdate

這些方法會(huì)在組件的狀態(tài)或者屬性發(fā)生發(fā)生變化時(shí)被執(zhí)行,如果我們使用了Redux,那么就只有當(dāng)屬性發(fā)生變化時(shí)被執(zhí)行。下面我們將從幾個(gè)場(chǎng)景來(lái)分析屬性的變化。

首先我們創(chuàng)建了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 (
      
        {text}
      
    );
  }
}

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 (
      
    )
  }
}

const mapStateToProps = (state) => {
  return { count: state.count }
};

const mapDispatchToProps = {
  addNumber
};

export default connect(mapStateToProps, mapDispatchToProps)(MyApp);

這里我們使用了Redux,但是代碼就不貼出來(lái)了,其中addNumber方法會(huì)每次點(diǎn)擊時(shí)將count加1。

這個(gè)時(shí)候當(dāng)我們點(diǎn)擊button時(shí),你覺(jué)得子組HelloWorldComponent的render方法會(huì)被執(zhí)行嗎?

React中的render什么時(shí)候執(zhí)行過(guò)程 

如圖所示,當(dāng)我們點(diǎn)擊button時(shí),子組件的render方法被執(zhí)行了??墒菑拇a來(lái)看,組件綁定的onClick和text都沒(méi)有發(fā)生改變啊,為何組件會(huì)更新呢?

如果在子組件的componentWillReceiveProps添加這個(gè)log:console.log(‘isEqual', nextProps === this.props); 輸出會(huì)是true還是false呢?

React中的render什么時(shí)候執(zhí)行過(guò)程 

是的,你沒(méi)有看錯(cuò),輸出的是false。這也是為什么子組件會(huì)更新了,因?yàn)閷傩灾蛋l(fā)生了變化,并不是說(shuō)我們綁定在組件上的屬性值。每次點(diǎn)擊button時(shí)會(huì)觸發(fā)state發(fā)生變化,進(jìn)而整個(gè)組件重新render了,但這并不是我們想要的,因?yàn)檫@不必要的渲染會(huì)極其影響我們應(yīng)用的性能。

在react中除了繼承Component創(chuàng)建組件之外,還有個(gè)PureComponent。通過(guò)該組件就可以避免這種情況。下面我們對(duì)代碼做點(diǎn)修改再來(lái)看效果。修改如下:

class HelloWorldComponent extends React.PureComponent

這次在點(diǎn)擊button時(shí)發(fā)生了什么呢?

React中的render什么時(shí)候執(zhí)行過(guò)程

雖然componentWillReceiveProps依然會(huì)執(zhí)行,但是這次組件沒(méi)有重新render。

所以,我們對(duì)于無(wú)狀態(tài)組件,我們應(yīng)該盡量使用PureComponent,需要注意的是PureComponent只關(guān)注屬性值,也就意味著對(duì)象和數(shù)組發(fā)生了變化是不會(huì)觸發(fā)render的。

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“React中的render什么時(shí)候執(zhí)行過(guò)程”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!


名稱欄目:React中的render什么時(shí)候執(zhí)行過(guò)程
轉(zhuǎn)載來(lái)于:http://weahome.cn/article/ppijeg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部