React組件的生命週期各環節運作流程

來源:互聯網
上載者:User

標籤:

‘use strict‘;React.createClass({    //1.建立階段    getDefaultProps:function(){        //在建立類的時候被調用        console.log(‘getDefaultProps‘);        return {};    },    //2.執行個體化階段    getInitailState:function(){        //擷取this.state的預設值        console.log(‘getInitailState‘);        return {};    },    componentWillMount:function(){        //在render之前調用        //商務邏輯的處理放這,如對state的操作        console.log(‘componentWillMount‘);    },    render:function(){        //渲染並返回一個虛擬DOM        console.log(‘render‘);        return (            <h1>{this.props.value}</h1>        );    },    componentDidMount:function(){        //該方法發生在render方法之後。        //在這裡React會使用render方法返回的虛擬DOM對象來建立真實的DOM結構        console.log(‘componentDidMount‘);    },    //3.更新階段    componentWillRecieveProps:function(){        //該方法發生在this.props被修改或父組件調用setProps()方法之後        console.log(‘componentWillRecieveProps‘);    },    shouldComponentUpdate:function(){        //是否需要更新        console.log(‘shouldComponentUpdate‘);        return true;    },    componentWillUpdate:function(){        //將要更新        console.log(‘componentWillUpdate‘);    },    componentDidUpdate:function(){        //更新完畢        console.log(‘componentDidUpdate‘);    },    //4.銷毀階段    componentWillUnmount:function(){        //銷毀時被調用        console.log(‘componentWillUnmount‘);    }});

 

React組件的生命週期各環節運作流程

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.