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

溫馨提示×

溫馨提示×

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

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

React組件的生命周期介紹以及過程是怎樣的

發布時間:2021-10-11 09:24:35 來源:億速云 閱讀:105 作者:柒染 欄目:開發技術

本篇文章為大家展示了React組件的生命周期介紹以及過程是怎樣的,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

一、什么是生命周期

組件的生命周期就是React的工作過程,就好比人有生老病死,自然界有日月更替,每個組件在網頁中也會有被創建、更新和刪除,如同有生命的機體一樣。

React組件的生命周期可以分為三個過程

  • 裝載(掛載)過程(mount):就是組件第一次在DOM樹中渲染的過程。

  • 更新過程(update):組件被重新渲染的過程。

  • 卸載過程(unmount):組件從DOM中被移除的過程。

二、裝載過程

依次調用如下函數constructor、getInitialState、getDefaultProps、componentWillMount、render、componentDidMount。

1、constructor

就是ES6里的構造函數,創建一個組件類的實例,在這一過程中要進行兩步操作:初始化state,綁定成員函數的this環境。

2、render

render是React組件中最為重要的一個函數。這是react中唯一不可忽略的函數,在render函數中,只能有一個父元素。render函數是一個純函數,它并不進行實際上的渲染動作,它只是一個JSX描述的結構,最終是由React來進行渲染過程,render函數中不應該有任何操作,對頁面的描述完全取決于this.state和this.props的返回結果,不能在render調用this.setState。

  • 有一個公式總結的非常形象 UI=render(data)

3、componentWillMount和componentDidMount

這兩個函數分別在render前后執行,由于這一過程通常只能在瀏覽器端調用,所以我們在這里獲取異步數據,而且在componentDidMount調用的時候,組件已經被裝載到DOM樹上了。

三、更新過程

簡單來說就是props和state被修改的過程,依次調用componentWillReceiveProps、shouldComponentUpdate、componentWillUpdate、render、componentDidUpdate。

1、componentWillReceiveProps(nextProps)

并不是只有在props發生改變的時候才會被調用,實際上只要是父組件的render函數被調用,render里面被渲染的子組件就會被更新,不管父組件傳給子組件的props有沒有被改變,都會觸發子組件的componentWillReceiveProps過程,但是,this.setState方法的觸發過程不會調用這個函數,因為這個函數適合根據新的props的值來計算出是不是要更新內部狀態的state。

2、shouldComponentUpdate(nextProps, nextState)

這個函數的重要性,僅次于render,render函數決定了該渲染什么,而shouldComponentUpdate決定了不需要渲染什么,都需要返回函數,這一過程可以提高性能,忽略掉沒有必要重新渲染的過程。

3、componentWillUpdate和componentDidUpdate

和裝載過程不同,這里的componentDidUpdate,既可以在瀏覽器端執行,也可以在服務器端執行

4、觸發render

在react中,觸發render的有4條路徑。

以下假設shouldComponentUpdate都是按照默認返回true的方式:

(1) 首次渲染Initial Render。

(2) 調用this.setState (并不是一次setState會觸發一次render,React可能會合并操作,再一次性進行render)。

(3) 父組件發生更新(一般就是props發生改變,但是就算props沒有改變或者父子組件之間沒有數據交換也會觸發render)。

(4) 調用this.forceUpdate。

React組件的生命周期介紹以及過程是怎樣的

注意:如果在shouldComponentUpdate里面返回false可以提前退出更新路徑。

四、卸載過程

實際中很少用到,這里只有一個componentWillUnmount,一般在componentDidMount里面注冊的事件需要在這里刪除。

五、生命周期流程

1、第一次初始化渲染顯示: ReactDOM.render()

  • constructor(): 創建對象初始化 state

  • componentWillMount() : 將要插入回調

  • render() : 用于插入虛擬 DOM 回調

  • componentDidMount() : 已經插入回調

2、每次更新 state: this.setState()

  • componentWillUpdate() : 將要更新回調

  • render() : 更新(重新渲染)

  • componentDidUpdate() : 已經更新回調

3、移除組件: ReactDOM.unmountComponentAtNode(containerDom)

  • componentWillUnmount() : 組件將要被移除回調

六、示例

 <div id='container'></div>
    <script type="text/babel">
        class LifeCycle extends React.Component {
            constructor(props) {
                super(props);
                alert("Initial render");
                alert("constructor");
                this.state = {str: "hello"};
            }
             componentWillMount() {
                alert("componentWillMount");
            }
            componentDidMount() {
                alert("componentDidMount");
            }
            componentWillReceiveProps(nextProps) {
                alert("componentWillReceiveProps");
            }
            shouldComponentUpdate() {
                alert("shouldComponentUpdate");
                return true;        // 記得要返回true
            }
             componentWillUpdate() {
                alert("componentWillUpdate");
            }
            componentDidUpdate() {
                alert("componentDidUpdate");
            }
            componentWillUnmount() {
                alert("componentWillUnmount");
            }
            setTheState() {
                let s = "hello";
                if (this.state.str === s) {
                    s = "HELLO";
                }
                this.setState({
                    str: s
                });
            }
            forceItUpdate() {
                this.forceUpdate();
            }
            render() {
                alert("render");
                return(
                    <div>
                        <span>{"Props:"}<h3>{parseInt(this.props.num)}</h3></span>
                        <br />
                        <span>{"State:"}<h3>{this.state.str}</h3></span>
                    </div>
                );
            }
        }
        class Container  extends React.Component {
            constructor(props) {
                super(props);
                this.state = {
                    num: Math.random() * 100
                };
            }
            propsChange() {
                this.setState({
                    num: Math.random() * 100
                });
            }
            setLifeCycleState() {
                this.refs.rLifeCycle.setTheState();
            }
            forceLifeCycleUpdate() {
                this.refs.rLifeCycle.forceItUpdate();
            }
            unmountLifeCycle() {
                // 這里卸載父組件也會導致卸載子組件
                ReactDOM.unmountComponentAtNode(document.getElementById("container"));
            }
            parentForceUpdate() {
                this.forceUpdate();
            }
            render() {
                return (
                    <div>
                        <a href="javascript:;"  onClick={this.propsChange.bind(this)}>propsChange</a>
                        &nbsp;&nbsp;&nbsp;
                        <a href="javascript:;"  onClick={this.setLifeCycleState.bind(this)}>setState</a>
                        &nbsp;&nbsp;&nbsp;
                        <a href="javascript:;"  onClick={this.forceLifeCycleUpdate.bind(this)}>forceUpdate</a>
                        &nbsp;&nbsp;&nbsp;
                        <a href="javascript:;"  onClick={this.unmountLifeCycle.bind(this)}>unmount</a>
                        &nbsp;&nbsp;&nbsp;
                        <a href="javascript:;"  onClick={this.parentForceUpdate.bind(this)}>parentForceUpdateWithoutChange</a>
                        <LifeCycle ref="rLifeCycle" num={this.state.num}></LifeCycle>
                    </div>
                );
            }
        }
        ReactDOM.render(
            <Container></Container>,
            document.getElementById('container')
        );
    </script>

上述內容就是React組件的生命周期介紹以及過程是怎樣的,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

澄江县| 河南省| 拉孜县| 深州市| 皮山县| 甘肃省| 家居| 康定县| 全南县| 汉沽区| 陇川县| 广德县| 嘉黎县| 军事| 五大连池市| 沙田区| 晋宁县| 邯郸市| 鄂伦春自治旗| 百色市| 宜宾市| 瓮安县| 万源市| 璧山县| 炎陵县| 莲花县| 廊坊市| 仲巴县| 神农架林区| 襄城县| 盱眙县| 丰镇市| 南溪县| 九台市| 贵州省| 武城县| 江孜县| 二连浩特市| 武功县| 南乐县| 兴业县|