中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

React組件生命周期是什么

發布時間:2020-07-09 10:06:22 來源:億速云 閱讀:168 作者:清晨 欄目:開發技術

小編給大家分享一下React組件生命周期是什么,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

在本章節中我們將討論 React 組件的生命周期。

組件的生命周期可分成三個狀態:

  • Mounting:已插入真實 DOM
  • Updating:正在被重新渲染
  • Unmounting:已移出真實 DOM
     

生命周期的方法有:

  • componentWillMount 在渲染前調用,在客戶端也在服務端。
  • componentDidMount : 在第一次渲染后調用,只在客戶端。之后組件已經生成了對應的DOM結構,可以通過this.getDOMNode()來進行訪問。 如果你想和其他JavaScript框架一起使用,可以在這個方法中調用setTimeout, setInterval或者發送AJAX請求等操作(防止異步操作阻塞UI)。
  • componentWillReceiveProps 在組件接收到一個新的 prop (更新后)時被調用。這個方法在初始化render時不會被調用。
  • shouldComponentUpdate 返回一個布爾值。在組件接收到新的props或者state時被調用。在初始化時或者使用forceUpdate時不被調用。可以在你確認不需要更新組件時使用。
  • componentWillUpdate在組件接收到新的props或者state但還沒有render時被調用。在初始化時不會被調用。
  • componentDidUpdate 在組件完成更新后立即調用。在初始化時不會被調用。
  • componentWillUnmount在組件從 DOM 中移除之前立刻被調用。

這些方法的詳細說明,可以參考官方文檔。

實例

以下實例在 Hello 組件加載以后,通過 componentDidMount 方法設置一個定時器,每隔100毫秒重新設置組件的透明度,并重新渲染:

class Hello extends React.Component {
 
 constructor(props) {
   super(props);
   this.state = {opacity: 1.0};
 }
 
 componentDidMount() {
  this.timer = setInterval(function () {
   var opacity = this.state.opacity;
   opacity -= .05;
   if (opacity < 0.1) {
    opacity = 1.0;
   }
   this.setState({
    opacity: opacity
   });
  }.bind(this), 100);
 }
 
 render () {
  return (
   <div style={{opacity: this.state.opacity}}>
    Hello {this.props.name}
   </div>
  );
 }
}
 
ReactDOM.render(
 <Hello name="world"/>,
 document.body
);

運行結果

React組件生命周期是什么

以下實例初始化 state , setNewnumber 用于更新 state。所有生命周期在 Content 組件中。

class Button extends React.Component {
 constructor(props) {
   super(props);
   this.state = {data: 0};
   this.setNewNumber = this.setNewNumber.bind(this);
 }
 
 setNewNumber() {
  this.setState({data: this.state.data + 1})
 }
 render() {
   return (
     <div>
      <button onClick = {this.setNewNumber}>INCREMENT</button>
      <Content myNumber = {this.state.data}></Content>
     </div>
   );
  }
}
 
 
class Content extends React.Component {
 componentWillMount() {
   console.log('Component WILL MOUNT!')
 }
 componentDidMount() {
    console.log('Component DID MOUNT!')
 }
 componentWillReceiveProps(newProps) {
    console.log('Component WILL RECEIVE PROPS!')
 }
 shouldComponentUpdate(newProps, newState) {
    return true;
 }
 componentWillUpdate(nextProps, nextState) {
    console.log('Component WILL UPDATE!');
 }
 componentDidUpdate(prevProps, prevState) {
    console.log('Component DID UPDATE!')
 }
 componentWillUnmount() {
     console.log('Component WILL UNMOUNT!')
 }
 
  render() {
   return (
    <div>
     <h4>{this.props.myNumber}</h4>
    </div>
   );
  }
}
ReactDOM.render(
  <div>
   <Button />
  </div>,
 document.getElementById('example')
);

運行結果

React組件生命周期是什么

看完了這篇文章,相信你對React組件生命周期是什么有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌拉特后旗| 邵阳市| 惠安县| 白水县| 卓资县| 安福县| 林州市| 尼木县| 龙里县| 高密市| 都匀市| 淮阳县| 石屏县| 银川市| 南皮县| 怀仁县| 滁州市| 东莞市| 陕西省| 黄平县| 名山县| 达孜县| 临桂县| 都匀市| 罗田县| 犍为县| 四川省| 宝丰县| 泰顺县| 新平| 龙陵县| 田阳县| 安化县| 巴林左旗| 公安县| 新丰县| 东台市| 南华县| 阳山县| 长丰县| 张家川|