1. 程式人生 > >vue鉤子函數

vue鉤子函數

一些事 XML 重新 track 響應 NPU 前言 upd -c

前言:

鉤子就好像是把人的出生到死亡分成一個個階段,你肯定是在出生階段起名字,而不會在成年或者死亡的階段去起名字。或者說你想在出生階段去約炮,也是不行的。組件也是一樣,每個階段它的內部構造是不一樣的。所以一般特定的鉤子做特定的事,比如ajax獲取數據就可以在mounted階段。

一、vue生命周期簡介

技術分享圖片 技術分享圖片


咱們從上圖可以很明顯的看出現在vue2.0都包括了哪些生命周期的函數了,總結一下,對官方文檔的那張圖簡化一下,就得到了這張圖。

技術分享圖片

二、生命周期探究

對於執行順序和什麽時候執行,看上面圖基本有個了解了。下面我們將結合代碼去看看鉤子函數的執行。

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>鉤子函數</title>
  5. <script type="text/javascript" src="vue_2.2.4.js"></script>
  6. <body>
  7. <div id="app">
  8. <p>{{ message }}</p>
  9. <input type="button" @click="change" value="更新數據" />
  10. <input type="button" @click="destroy" value="銷毀" />
  11. </div>
  12. <script type="text/javascript">
  13. var vm = new Vue({
  14. el: ‘#app‘,
  15. data: {
  16. message : "Welcome Vue"
  17. },
  18. methods:{
  19. change() {
  20. this.message = ‘Datura is me‘;
  21. },
  22. destroy() {
  23. vm.$destroy();
  24. }
  25. },
  26. beforeCreate: function () {
  27. console.group(‘beforeCreate 創建前狀態===============》‘);
  28. console.log("%c%s", "color:red","el : " + this.$el); //undefined
  29. console.log("%c%s", "color:red","data : " + this.$data); //undefined
  30. console.log("%c%s", "color:red","message: " + this.message);//undefined
  31. },
  32. created: function () {
  33. console.group(‘created 創建完畢狀態===============》‘);
  34. console.log("%c%s", "color:red","el : " + this.$el); //undefined
  35. console.log("%c%s", "color:green","data : " + this.$data); //[object Object] => 已被初始化
  36. console.log("%c%s", "color:green","message: " + this.message); //Welcome Vue => 已被初始化
  37. },
  38. beforeMount: function () {
  39. console.group(‘beforeMount 掛載前狀態===============》‘);
  40. console.log("%c%s", "color:green","el : " + (this.$el)); //已被初始化
  41. console.log(this.$el); // 當前掛在的元素
  42. console.log("%c%s", "color:green","data : " + this.$data); //已被初始化
  43. console.log("%c%s", "color:green","message: " + this.message); //已被初始化
  44. },
  45. mounted: function () {
  46. console.group(‘mounted 掛載結束狀態===============》‘);
  47. console.log("%c%s", "color:green","el : " + this.$el); //已被初始化
  48. console.log(this.$el);
  49. console.log("%c%s", "color:green","data : " + this.$data); //已被初始化
  50. console.log("%c%s", "color:green","message: " + this.message); //已被初始化
  51. },
  52. beforeUpdate: function () {
  53. alert("更新前狀態");
  54. console.group(‘beforeUpdate 更新前狀態===============》‘); //這裏指的是頁面渲染新數據之前
  55. console.log("%c%s", "color:green","el : " + this.$el);
  56. console.log(this.$el);
  57. console.log("%c%s", "color:green","data : " + this.$data);
  58. console.log("%c%s", "color:green","message: " + this.message);
  59. alert("更新前狀態2");
  60. },
  61. updated: function () {
  62. console.group(‘updated 更新完成狀態===============》‘);
  63. console.log("%c%s", "color:green","el : " + this.$el);
  64. console.log(this.$el);
  65. console.log("%c%s", "color:green","data : " + this.$data);
  66. console.log("%c%s", "color:green","message: " + this.message);
  67. },
  68. beforeDestroy: function () {
  69. console.group(‘beforeDestroy 銷毀前狀態===============》‘);
  70. console.log("%c%s", "color:red","el : " + this.$el);
  71. console.log(this.$el);
  72. console.log("%c%s", "color:red","data : " + this.$data);
  73. console.log("%c%s", "color:red","message: " + this.message);
  74. },
  75. destroyed: function () {
  76. console.group(‘destroyed 銷毀完成狀態===============》‘);
  77. console.log("%c%s", "color:red","el : " + this.$el);
  78. console.log(this.$el);
  79. console.log("%c%s", "color:red","data : " + this.$data);
  80. console.log("%c%s", "color:red","message: " + this.message)
  81. }
  82. })
  83. </script>
  84. </body>
  85. </html>
1. create 和 mounted

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

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

技術分享圖片
2. update

我們單擊頁面中的“更新數據”按鈕,將數據更新。下面就能看到data裏的值被修改後,將會觸發update的操作。

ps:註意beforeUpdate是指view層的數據變化前,不是data中的數據改變前觸發。因為Vue是數據驅動的。註意觀察彈窗就容易發現。
技術分享圖片
3. destroy

銷毀完成後,我們再重新改變message的值,vue不再對此動作進行響應了。但是原先生成的dom元素還存在,可以這麽理解,執行了destroy操作,後續就不再受vue控制了。因為這個Vue實例已經不存在了。
我們單擊頁面中的“銷毀”按鈕,將指定的Vue實例銷毀。

技術分享圖片

三、生命周期總結

beforecreate : 舉個栗子:可以在這加個loading事件
created :在這結束loading,還做一些初始化,實現函數自執行
mounted : 在這發起後端請求,拿回數據,配合路由鉤子做一些事情
beforeDestory: 你確認刪除XX嗎? destoryed :當前組件已被刪除,清空相關內容

vue鉤子函數