每个vue实例从创建到销毁的过程都是一个生命周期,也会运行对应的钩子函数,下图为Vue生命周期示意图:
1.beforeCreate
官方解释:在实例初始化之后,数据观测 (data observer) 和 event/watcher 事件配置之前被调用。
说明:这个时候this还不能使用,data中的数据、methods中的方法,以及watcher中的事件都不能获得。
var vm = new Vue({
el: '#app',
data: {
message: '今天是周一!!!'
},
beforeCreate(){
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); //undefined
}
})
2.created
官方解释:实例已经创建完成之后被调用。在这一步,实例已完成以下的配置:数据观测(data observer),属性和方法的运算,watch/event 事件回调。然而,挂载阶段还没开始,$el属性目前不可见。
说明:这个时候可以操作vue中的数据和方法,但是还不能对dom节点进行操作。
created(){
console.group('created 创建完毕状态==========>>');
console.log("%c%s", "color:red", "el : "+this.$el); //undefined
console.log("%c%s", "color:red", "data : "+this.$data); //[object Object]
console.log("%c%s", "color:red", "message: "+this.message); //今天是周一!!!
}
3.beforeMount
官方解释:在挂载开始之前被调用:相关的render 函数首次被调用。
说明:$el属性已存在,是虚拟dom,只是数据未挂载到模板中。
beforeMount(){
console.group('beforeMount 挂载前状态==========>>');
console.log("%c%s", "color:red", "el : "+this.$el); //[object HTMLDivElement]
console.log(this.$el);
console.log("%c%s", "color:red", "data : "+this.$data); //[object Object]
console.log("%c%s", "color:red", "message: "+this.message); //今天是周一!!!
}
4.mounted
官方解释:el 被新创建的 vm.el 也在文档内。注意 mounted 不会承诺所有的子组件也都一起被挂载。如果你希望等到整个视图都渲染完毕,可以用 vm.$nextTick替换掉 mounted。
说明:挂载完毕,这时dom节点被渲染到文档内,dom操作在此时能正常进行。
mounted(){
console.group('mounted 挂载结束状态==========>>');
console.log("%c%s", "color:red", "el : "+this.$el); //[object HTMLDivElement]
console.log(this.$el);
console.log("%c%s", "color:red", "data : "+this.$data); //[object Object]
console.log("%c%s", "color:red", "message: "+this.message); //今天是周一!!!
}
点击页面中的元素执行相应的事件,并触发beforeUpdate和updated钩子函数
5.beforeUpdate
官方解释:数据更新时调用,发生在虚拟 DOM 打补丁之前。这里适合在更新之前访问现有的 DOM,比如手动移除已添加的事件监听器。
说明:beforeUpdate是指view层的数据变化前,不是data中的数据改变前触发。因为Vue是数据驱动的。
beforeUpdate(){
console.group('beforeUpdate 更新前状态==========>>');
console.log("%c%s", "color:red", "el : "+this.$el); //[object HTMLDivElement]
console.log(this.$el);
console.log(this.$el.innerHTML); //<p>今天是周一!!!</p>
console.log("%c%s", "color:red", "data : "+this.$data); //[object Object]
console.log("%c%s", "color:red", "message: "+this.message); //今天周二了!!!
}
6.updated
官方解释:由于数据更改导致的虚拟 DOM 重新渲染和打补丁,在这之后会调用该钩子。
当这个钩子被调用时,组件 DOM 已经更新,所以你现在可以执行依赖于 DOM 的操作。然而在大多数情况下,你应该避免在此期间更改状态。如果要相应状态改变,通常最好使用计算属性或 watcher取而代之。
注意 updated 不会承诺所有的子组件也都一起被重绘。如果你希望等到整个视图都重绘完毕,可以用 vm.$nextTick替换掉 updated:
说明:view层的数据更新后,data中的数据同beforeUpdate,都是更新完以后的。
updated(){
console.group('updated 更新完成状态==========>>');
console.log("%c%s", "color:red", "el : "+this.$el); //[object HTMLDivElement]
console.log(this.$el);
console.log(this.$el.innerHTML); //<p>今天周二了!!!</p>
console.log("%c%s", "color:red", "data : "+this.$data); //[object Object]
console.log("%c%s", "color:red", "message: "+this.message); //今天周二了!!!
}
注意:细心的小伙伴会发现beforeUpdate和updated钩子函数中的$el一样,根据官方理解beforeUpdate应该指向虚拟dom,所以才会一样,而dom中的真正内容不一样,但是beforeMount和mouted钩子函数中为什么又会有区别呢?感觉是设计的不足之处。
执行vm.$destroy()函数触发beforeDestroy和destoryed钩子函数。
7.beforeDestroy
官方解释:实例销毁之前调用。在这一步,实例仍然完全可用。
beforeDestroy(){
console.group('beforeDestroy 销毁前状态==========>>');
console.log("%c%s", "color:red", "el : "+this.$el); //[object HTMLDivElement]
console.log(this.$el);
console.log("%c%s", "color:red", "data : "+this.$data); //[object Object]
console.log("%c%s", "color:red", "message: "+this.message); //今天周二了!!!
}
8.destroyed
官方解释:Vue 实例销毁后调用。调用后,Vue 实例指示的所有东西都会解绑定,所有的事件监听器会被移除,所有的子实例也会被销毁。
说明:执行destroy方法后,对data的改变不会再触发周期函数,此时的vue实例已经解除了事件监听以及和dom的绑定,但是dom结构依然存在。
destroyed(){
console.group('destroyed 销毁完成状态==========>>');
console.log("%c%s", "color:red", "el : "+this.$el); //[object HTMLDivElement]
console.log(this.$el);
console.log("%c%s", "color:red", "data : "+this.$data); //[object Object]
console.log("%c%s", "color:red", "message: "+this.message); //今天周二了!!!
}
9.activated
页面出现的时候执行 activated生命周期函数,跟 监听 watch 有类似的作用。
activated生命周期函数,是配合 keep-alive 进行使用。进入页面时,mounted 与 activated 生命周期函数都会执行,当前 keep-alive 时,进行了缓存,这时返回上一页 ,mounted生命周期函数不会执行,而 activated 会执行。
10.deactivated
页面消失的时候执行,deactivated生命周期函数。是配合 keep-alive 进行使用。
总结:
● beforecreate:可以在这加个loading事件。
● created :在这结束loading,还做一些初始化,实现函数自执行。
● mounted : 在这发起后端请求,拿回数据,配合路由钩子做一些事情。
● beforeDestory: 你确认删除vue实例了吗。
● destoryed :当前实例已被销毁,解绑相关指令和事件监听器。
最后:父子组件嵌套时触发钩子函数顺序
● 组件挂载阶段
父组件beforeCreate=>>父组件created=>>父组件beforeMount=>>子组件beforeCreate=>>子组件created=>>子组件beforeMount=>>父组件mounted=>>父组件mounted
即从创建到挂载,是从外到内,再从内到外。
● 组件更新阶段
父组件beforeUpdate=>>父组件updated
● 组件销毁阶段
父组件beforeDestroy=>>子组件beforeDestroy=>>子组件destroyed父组件destroyed
即销毁是从外到内,再从内到外。