Vue生命周期
Vue
实例需要经过创建、初始化数据、编译模板、挂载DOM
、渲染、更新、渲染、卸载等一系列过程,这个过程就是Vue
的生命周期,在Vue
的整个生命周期中提供很多钩子函数在生命周期的不同时刻调用,Vue
中提供的钩子函数有beforeCreate
、created
、beforeMount
、mounted
、beforeUpdate
、updated
、beforeDestroy
、destroyed
。
示例
在实例化Vue
过程中,会直接触发的生命周期有beforeCreate
、created
、beforeMount
、mounted
,在数据更新的过程中触发的生命周期有beforeUpdate
、updated
,在销毁组件的过程中触发的生命周期有beforeDestroy
、destroyed
。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
| <!DOCTYPE html> <html> <head> <title>Vue生命周期</title> </head> <body> <div id="app"> <div>{{msg}}</div> <button @click="updateMsg">updateMsg</button> <button @click="destroyVue">destroyVue</button> </div> </body> <script src="https://cdn.bootcss.com/vue/2.4.2/vue.js"></script> <script type="text/javascript"> var vm = new Vue({ el: '#app', data: { msg: 'Vue Lifecycle' }, beforeCreate: function() { console.log("beforeCreate"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------"); }, created: function() { console.log("created"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------"); }, beforeMount: function() { console.log("beforeMount"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------"); }, mounted: function() { console.log("mounted"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------"); }, beforeUpdate: function () { console.log("beforeUpdate"); console.log(this.$el); console.log(this.$data); console.log(this.msg); debugger; console.log("--------------------"); }, updated: function () { console.log("updated"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------"); }, beforeDestroy: function () { console.log("beforeDestroy"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------"); }, destroyed: function () { console.log("destroyed"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------"); }, methods:{ updateMsg: function(){ this.msg = "Vue Update"; }, destroyVue: function(){ this.$destroy(); } } }) </script> </html>
|
beforeCreate
从Vue
实例开始创建到beforeCreate
钩子执行的过程中主要进行了一些初始化操作,例如组件的事件与生命周期钩子的初始化。在此生命周期钩子执行时组件并未挂载,data
、methods
等也并未绑定,此时主要可以用来加载一些与Vue
数据无关的操作,例如展示一个loading
等。
1 2 3 4 5
| console.log("beforeCreate"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------");
|
created
从beforeCreate
到created
的过程中主要完成了数据绑定的配置、计算属性与方法的挂载、watch/event
事件回调等。在此生命周期钩子执行时组件未挂载到到DOM
,属性$el
目前仍然为undefined
,但此时已经可以开始操作data
与methods
等,只是页面还未渲染,在此阶段通常用来发起一个XHR
请求。
1 2 3 4 5
| console.log("created"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------");
|
beforeMount
从created
到beforeMount
的过程中主要完成了页面模板的解析,在内存中将页面的数据与指令等进行解析,当页面解析完成,页面模板就存在于内存中。在此生命周期钩子执行时$el
被创建,但是页面只是在内存中,并未作为DOM
渲染。
1 2 3 4 5
| console.log("beforeMount"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------");
|
mounted
从beforeMount
到mounted
的过程中执行的是将页面从内存中渲染到DOM
的操作。在此生命周期钩子执行时页面已经渲染完成,组件正式完成创建阶段的最后一个钩子,即将进入运行中阶段。此外关于渲染的页面模板的优先级,是render
函数 >
template
属性 >
外部HTML
。
1 2 3 4 5
| console.log("mounted"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------");
|
beforeUpdate
当数据发生更新时beforeUpdate
钩子便会被调用,此时Vue
实例中数据已经是最新的,但是在页面中的数据还是旧的,在此时可以进一步地更改状态,这不会触发附加的重渲染过程。在上述例子中加入了debugger
断点,可以观察到Vue
实例中数据已经是最新的,但是在页面中的数据还是旧的。
1 2 3 4 5 6 7
| console.log("beforeUpdate"); console.log(this.$el); console.log(this.$data); console.log(this.msg); debugger; console.log("--------------------");
|
updated
当数据发生更新并在DOM
渲染完成后updated
钩子便会被调用,在此时组件的DOM
已经更新,可以执行依赖于DOM
的操作。
1 2 3 4 5 6
| console.log("updated"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------");
|
beforeDestroy
在Vue
实例被销毁之前beforeDestroy
钩子便会被调用,在此时实例仍然完全可用。
1 2 3 4 5 6
| console.log("beforeDestroy"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------");
|
destroyed
在Vue
实例被销毁之后destroyed
钩子便会被调用,在此时Vue
实例绑定的所有东西都会解除绑定,所有的事件监听器会被移除,所有的子实例也会被销毁,组件无法使用,data
和methods
也都不可使用,即使更改了实例的属性,页面的DOM
也不会重新渲染。
1 2 3 4 5 6
| console.log("destroyed"); console.log(this.$el); console.log(this.$data); console.log(this.msg); console.log("--------------------");
|
参考
1 2 3 4 5 6
| https://www.jianshu.com/p/672e967e201c https://cn.vuejs.org/v2/guide/instance.html https://segmentfault.com/a/1190000011381906 https://segmentfault.com/a/1190000018331135 https://www.cnblogs.com/qidh/p/11431998.html https://www.cnblogs.com/wangjiachen666/p/9497749.html
|