这篇博客将会从下面四个常见的应用诠释组件的生命周期,以及各个生命周期应该干什么事
生命周期:Vue 实例从开始创建、初始化数据、编译模板、挂载Dom→渲染、更新→渲染、卸载等一系列过程,我们称这是 Vue 的生命周期,各个阶段有相对应的事件钩子
0、生命周期钩子
生命周期钩子 | 组件状态 | 最佳实践 |
---|---|---|
beforeCreate | 实例初始化之后,this指向创建的实例,不能访问到data、computed、watch、methods上的方法和数据 | 常用于初始化非响应式变量 |
created | 实例创建完成,可访问data、computed、watch、methods上的方法和数据,未挂载到DOM,不能访问到 e l 属 性 , el属性, el属性,ref属性内容为空数组 | 常用于简单的ajax请求,页面的初始化 |
beforeMount | 在挂载开始之前被调用,beforeMount之前,会找到对应的template,并编译成render函数 | – |
mounted | 实例挂载到DOM上,此时可以通过DOM API获取到DOM节点,$ref属性可以访问 | 常用于获取VNode信息和操作,ajax请求 |
beforeupdate | 响应式数据更新时调用,发生在虚拟DOM打补丁之前 | 适合在更新之前访问现有的DOM,比如手动移除已添加的事件监听器 |
updated | 虚拟 DOM 重新渲染和打补丁之后调用,组件DOM已经更新,可执行依赖于DOM的操作 | 避免在这个钩子函数中操作数据,可能陷入死循环 |
beforeDestroy | 实例销毁之前调用。这一步,实例仍然完全可用,this仍能获取到实例 | 常用于销毁定时器、解绑全局事件、销毁插件对象等操作 |
destroyed | 实例销毁后调用,调用后,Vue 实例指示的所有东西都会解绑定,所有的事件监听器会被移除,所有的子实例也会被销毁 | – |
注意:
1、created阶段的ajax请求与mounted请求的区别:前者页面视图未出现,如果请求信息过多,页面会长时间处于白屏状态
2、mounted 不会承诺所有的子组件也都一起被挂载。如果你希望等到整个视图都渲染完毕,可以用 vm.$nextTick(() => { 执行代码 })
3、vue2.0之后主动调用$destroy()不会移除dom节点,作者不推荐直接destroy这种做法,如果实在需要这样用可以在这个生命周期钩子中手动移除dom节点
1、 单个组件的生命周期
<template>
<div>
<h3>单组件</h3>
<button @click="dataVar += 1">更新 {{dataVar}}</button>
<button @click="handleDestroy">销毁</button>
</div>
</template>
<script>
export default {
name: "index",
data() {
return { dataVar: 1 }
},
beforeCreate() {
this.compName = 'single'
console.log(`--${this.compName}--beforeCreate`)
},
created() {
console.log(`--${this.compName}--created`)
},
beforeMount() {
console.log(`--${this.compName}--beforeMount`)
},
mounted() {
console.log(`--${this.compName}--mounted`)
},
beforeUpdate() {
console.log(`--${this.compName}--beforeUpdate`)
},
updated() {
console.log(`--${this.compName}--updated`)
},
beforeDestroy() {
console.log(`--${this.compName}--beforeDestroy`)
},
destroyed() {
console.log(`--${this.compName}--destroyed`)
},
methods: {
handleDestroy() { this.$destroy() }
}
}
</script>
初始化组件时,打印:
–single–beforeCreate
–single–created
–single–beforeMount
–single–mounted
当data中的值变化时,打印:
–single–beforeUpdate
–single–updated
当组件销毁时,打印:
–single–beforeDestroy
–single–destroyed
从打印结果可以看出:
1、初始化组件时,仅执行了beforeCreate/Created/beforeMount/mounted四个钩子函数
2、当改变data中定义的变量(响应式变量)时,会执行beforeUpdate/updated钩子函数
3、当切换组件(当前组件未缓存)时,会执行beforeDestory/destroyed钩子函数
4、初始化和销毁时的生命钩子函数均只会执行一次,beforeUpdate/updated可多次执行
2、父子组件的生命周期
父组件
<template>
<div class="complex">
<h3>复杂组件</h3>
<lifecycle-single compName="child"></lifecycle-single>
</div>
</template>
<script>
const COMPONENT_NAME = 'complex'
import LifecycleSingle from './son'
export default {
beforeCreate() {
console.log(`--${COMPONENT_NAME}--beforeCreate`)
},
created() {
console.log(`--${COMPONENT_NAME}--created`)
},
beforeMount() {
console.log(`--${COMPONENT_NAME}--beforeMount`)
},
mounted() {
console.log(`--${COMPONENT_NAME}--mounted`)
},
beforeUpdate() {
console.log(`--${COMPONENT_NAME}--beforeUpdate`)
},
updated() {
console.log(`--${COMPONENT_NAME}--updated`)
},
beforeDestroy() {
console.log(`--${COMPONENT_NAME}--beforeDestroy`)
},
destroyed() {
console.log(`--${COMPONENT_NAME}--destroyed`)
},
components: {
LifecycleSingle
}
}
</script>
子组件
<template>
<div>
<p>鼠标右击点击检查或者按F12快捷键,查看console的输出结果</p>
<button @click="dataVar += 1">更新 {{dataVar}}</button>
<button @click="handleDestroy">销毁</button>
</div>
</template>
<script>
export default {
name: "son",
props: {
compName: {
type: String,
default: 'single'
}
},
data() {
return {
dataVar: 1
}
},
beforeCreate() {
// 配合父子组件
console.log(` --data未初始化--beforeCreate`)
},
created() {
console.log(`--${this.compName}--created`)
},
beforeMount() {
console.log(`--${this.compName}--beforeMount`)
},
mounted() {
console.log(`--${this.compName}--mounted`)
},
beforeUpdate() {
console.log(`--${this.compName}--beforeUpdate`)
},
updated() {
console.log(`--${this.compName}--updated`)
},
beforeDestroy() {
console.log(`--${this.compName}--beforeDestroy`)
},
destroyed() {
console.log(`--${this.compName}--destroyed`)
},
methods: {
handleDestroy() {
this.$destroy()
}
}
}
</script>
初始化组件时,打印:
–complex–beforeCreate
–complex–created
–complex–beforeMount
–data未初始化–beforeCreate
–child–created
–child–beforeMount
–child–mounted
–complex–mounted
当子组件data中的值变化时,打印:
–complex–beforeCreate
–complex–created
–complex–beforeMount
–data未初始化–beforeCreate
–child–created
–child–beforeMount
–child–mounted
–complex–mounted
当父组件data中的值变化时,打印:
–complex–beforeUpdate
–complex–updated
当子组件data中的值变化时,打印:
–child–beforeUpdate
–child–updated
在父级改变props时,打印:
–complex–beforeUpdate
–complex–updated
在子级改变props时,打印:
–complex–beforeUpdate
–complex–updated
当子组件销毁时,打印:
–updataChild_P–beforeDestroy
–destroyed
当父组件销毁时,打印:
–complex–beforeDestroy
–child–beforeDestroy
–child–destroyed
–complex–destroyed
从打印结果可以看出:
1、仅当子组件完成挂载后,父组件才会挂载
2、父子组件在data变化中是分别监控的,但是在更新props中的数据是关联的。更改的始终是属于父级的变量。
3、销毁父组件时,会先将子组件销毁后才会销毁父组件,而销毁组件的时候不会影响父组件
2.1、父子组件的生命周期(异步引入)
更改子组件为
//import LifecycleSingle from './son'
const LifecycleSingle = () => import('./son')
初始化组件时,打印:
–complex–beforeCreate
–complex–created
–complex–beforeMount
–complex–mounted
–complex–beforeUpdate
–data未初始化–beforeCreate
–child–created
–child–beforeMount
–child–mounted
–complex–updated
其他操作与同步一样
从打印结果可以看出:
异步引入的子组件不会阻塞父组件的加载
3、兄弟组件的生命周期
把子组件赋值一份代码,再把compName赋值为 child1
<template>
<div class="complex">
...
<lifecycle-single
:compName="compName"
@updateChild = "updateCompName"
></lifecycle-single>
<lifecycle-single
:compName="compNameT"
@updateChild = "updateCompName"
></lifecycle-single>
</div>
</template>
<script>
...
export default {
data(){
return {
...
compName: "child1",
compNameT: "child2",
...
}
},
...
}
</script>
初始化组件时,打印:
–complex–beforeCreate
–complex–created
–complex–beforeMount
–data未初始化–beforeCreate
–child–created
–child–beforeMount
–child–mounted
–complex–mounted
当子组件data中的值变化时,打印:
–complex–beforeCreate
–complex–created
–complex–beforeMount
–data未初始化–beforeCreate
–child1–created
–child1–beforeMount
–data未初始化–beforeCreate
–child2–created
–child2–beforeMount
–child1–mounted
–child2–mounted
–complex–mounted
当子组件销毁时,打印:
同单个文件销毁一样
当父组件销毁时,打印:
–complex–beforeDestroy
–child1–beforeDestroy
–child1–destroyed
–child2–beforeDestroy
–child2–destroyed
–complex–destroyed
从打印结果可以看出:
1、组件的初始化(mounted之前)分开进行,挂载是从上到下依次进行
2、当没有数据关联时,兄弟组件之间的更新和销毁是互不关联的
3.1、子组件异步引入
当子组件data中的值变化时,打印:
–complex–beforeCreate
–complex–created
–complex–beforeMount
–complex–mounted
–complex–beforeUpdate
–data未初始化–beforeCreate
–child1–created
–child1–beforeMount
–data未初始化–beforeCreate
–child2–created
–child2–beforeMount
–child1–mounted
–child2–mounted
–complex–updated
其他操作与同步一样
4、宏mixin的生命周期
初始化组件时,打印:
–lifecycleMixin–beforeCreate
–complex–beforeCreate
–lifecycleMixin–created
–complex–created
–lifecycleMixin–beforeMount
–complex–beforeMount
–data未初始化–beforeCreate
–child1–created
–child1–beforeMount
–data未初始化–beforeCreate
–child2–created
–child2–beforeMount
–child1–mounted
–child2–mounted
–lifecycleMixin–mounted
–complex–mounted
组件销毁时,打印:
–lifecycleMixin–beforeDestroy
–complex–beforeDestroy
–child1–beforeDestroy
–child1–destroyed
–child2–beforeDestroy
–child2–destroyed
–lifecycleMixin–destroyed
–complex–destroyed
从打印结果可以看出:
mixin中的生命周期与引入该组件的生命周期是仅仅关联的,且mixin的生命周期优先执行
5、 v-if & v-show 触发的生命周期
v-if
初始渲染
初始值为 false 组件不会渲染,生命周期钩子不会执行,v-if 的渲染是惰性的。
初始值为 true 时,组件会进行渲染,并依次执行 beforeCreate,created,beforeMount,mounted 钩子。
切换
false => true
依次执行 beforeCreate,created,beforeMount,mounted 钩子。
true => false
依次执行 beforeDestroy,destroyed 钩子。
v-show
渲染
无论初始状态,组件都会渲染,依次执行 beforeCreate,created,beforeMount,mounted 钩子,v-show 的渲染是非惰性的。
切换
对生命周期钩子无影响,切换时组件始终保持在 mounted 钩子之后。所以不会触发生命周期!