91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

泌阳县| 霞浦县| 廉江市| 辛集市| 徐汇区| 翁源县| 晋江市| 侯马市| 石林| 闸北区| 余江县| 南丰县| 普兰店市| 资讯| 临城县| 尉犁县| 周口市| 泰来县| 洪湖市| 黄骅市| 金坛市| 通渭县| 湖州市| 水富县| 景宁| 崇明县| 建瓯市| 鹿邑县| 金沙县| 河北省| 礼泉县| 苗栗县| 大港区| 白银市| 宜春市| 东港市| 孝义市| 临潭县| 凤凰县| 平南县| 鄱阳县|