詳解vue生命週期

vue生命週期

@(vue)[生命週期]javascript

前言


在使用vue一個多禮拜後,感受如今還停留在初級階段,雖然知道怎麼和後端作數據交互,可是對於mounted這個掛載還不是很清楚的。放大之,對vue的生命週期不甚瞭解。只知道簡單的使用,而不知道爲何,這對後面的踩坑是至關不利的。html

由於咱們有時候會在幾個鉤子函數裏作一些事情,何時作,在哪一個函數裏作,咱們不清楚。vue

因而我開始先去搜索,發現vue2.0的生命週期沒啥文章。大可能是1.0的版本介紹。最後仍是找到一篇不錯的(會放在最後)java

vue生命週期簡介

Alt text
Alt text
我們從上圖能夠很明顯的看出如今vue2.0都包括了哪些生命週期的函數了。chrome

生命週期探究

對於執行順序和何時執行,看上面兩個圖基本有個瞭解了。下面咱們將結合代碼去看看鉤子函數的執行。後端

ps:下面代碼能夠直接複製出去執行瀏覽器

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <script type="text/javascript" src="https://cdn.jsdelivr.net/vue/2.1.3/vue.js"></script>
</head>
<body>

<div id="app">
     <p>{{ message }}</p>
</div>

<script type="text/javascript">
    
  var app = new Vue({
      el: '#app',
      data: {
          message : "xuxiao is boy" 
      },
       beforeCreate: function () {
                console.group('beforeCreate 建立前狀態===============》');
               console.log("%c%s", "color:red" , "el     : " + this.$el); //undefined
               console.log("%c%s", "color:red","data   : " + this.$data); //undefined 
               console.log("%c%s", "color:red","message: " + this.message)  
        },
        created: function () {
            console.group('created 建立完畢狀態===============》');
            console.log("%c%s", "color:red","el     : " + this.$el); //undefined
               console.log("%c%s", "color:red","data   : " + this.$data); //已被初始化 
               console.log("%c%s", "color:red","message: " + this.message); //已被初始化
        },
        beforeMount: function () {
            console.group('beforeMount 掛載前狀態===============》');
            console.log("%c%s", "color:red","el     : " + (this.$el)); //已被初始化
            console.log(this.$el);
               console.log("%c%s", "color:red","data   : " + this.$data); //已被初始化  
               console.log("%c%s", "color:red","message: " + this.message); //已被初始化  
        },
        mounted: function () {
            console.group('mounted 掛載結束狀態===============》');
            console.log("%c%s", "color:red","el     : " + this.$el); //已被初始化
            console.log(this.$el);    
               console.log("%c%s", "color:red","data   : " + this.$data); //已被初始化
               console.log("%c%s", "color:red","message: " + this.message); //已被初始化 
        },
        beforeUpdate: function () {
            console.group('beforeUpdate 更新前狀態===============》');
            console.log("%c%s", "color:red","el     : " + this.$el);
            console.log(this.$el);   
               console.log("%c%s", "color:red","data   : " + this.$data); 
               console.log("%c%s", "color:red","message: " + this.message); 
        },
        updated: function () {
            console.group('updated 更新完成狀態===============》');
            console.log("%c%s", "color:red","el     : " + this.$el);
            console.log(this.$el); 
               console.log("%c%s", "color:red","data   : " + this.$data); 
               console.log("%c%s", "color:red","message: " + this.message); 
        },
        beforeDestroy: function () {
            console.group('beforeDestroy 銷燬前狀態===============》');
            console.log("%c%s", "color:red","el     : " + this.$el);
            console.log(this.$el);    
               console.log("%c%s", "color:red","data   : " + this.$data); 
               console.log("%c%s", "color:red","message: " + this.message); 
        },
        destroyed: function () {
            console.group('destroyed 銷燬完成狀態===============》');
            console.log("%c%s", "color:red","el     : " + this.$el);
            console.log(this.$el);  
               console.log("%c%s", "color:red","data   : " + this.$data); 
               console.log("%c%s", "color:red","message: " + this.message)
        }
    })
</script>
</body>
</html>

create 和 mounted 相關

我們在chrome瀏覽器裏打開,F12看console就能發現app

beforecreated:el 和 data 並未初始化
created:完成了 data 數據的初始化,el沒有
beforeMount:完成了 el 和 data 初始化
mounted :完成掛載dom

另外在標紅處,咱們能發現el仍是 {{message}},這裏就是應用的 Virtual DOM(虛擬Dom)技術,先把坑佔住了。到後面mounted掛載的時候再把值渲染進去。
Alt text函數

pdate 相關

這裏咱們在 chrome console裏執行如下命令

app.message= 'yes !! I do';
下面就能看到data裏的值被修改後,將會觸發update的操做。

Alt text

destroy 相關

有關於銷燬,暫時還不是很清楚。咱們在console裏執行下命令對 vue實例進行銷燬。銷燬完成後,咱們再從新改變message的值,vue再也不對此動做進行響應了。可是原先生成的dom元素還存在,能夠這麼理解,執行了destroy操做,後續就再也不受vue控制了。

app.$destroy();
Alt text

生命週期總結

這麼多鉤子函數,咱們怎麼用呢,我想你們可能有這樣的疑問吧,我也有,哈哈哈。

beforecreate : 舉個栗子:能夠在這加個loading事件 created :在這結束loading,還作一些初始化,實現函數自執行 mounted : 在這發起後端請求,拿回數據,配合路由鉤子作一些事情 beforeDestory: 你確認刪除XX嗎? destoryed :當前組件已被刪除,清空相關內容 固然,還有更多,繼續探索中......

相關文章
相關標籤/搜索