温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Vue中的生命周期实例分析

发布时间:2022-03-14 11:55:15 来源:亿速云 阅读:158 作者:iii 栏目:开发技术

这篇文章主要介绍“Vue中的生命周期实例分析”,在日常操作中,相信很多人在Vue中的生命周期实例分析问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Vue中的生命周期实例分析”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

什么是vue的生命周期

Vue中的生命周期是指组件从创建到销毁的一系列过程。看下面这张官方文档的图:

Vue中的生命周期实例分析

从图片中可以看出Vue的整个生命周期包括8个状态,按照先后顺序分别为:

  • beforeCreate

  • Created

  • beforeMount

  • mounted

  • beforeUpdate

  • updated

  • beforeDestroy

  • destroyed

Vue组件的生命周期共分为三个阶段,如下图所示:

Vue中的生命周期实例分析

创建阶段和销毁阶段在组件的生命周期中只会执行一次,而更新阶段会执行多次。

先看一下创建阶段完成的事情:

Vue中的生命周期实例分析

在看更新阶段完成的事情:

Vue中的生命周期实例分析

最后在看一下销毁阶段完成的事情:

Vue中的生命周期实例分析

先看下面的一段代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>生命周期</title>
    <!--引入vue.js-->
    <script src="./js/vue.js" ></script>
    <script>
        window.onload=function(){
            new Vue({
                el:'#app',// 2.0不允许挂载到html,body元素上
                data:{
                    msg:'welcome'
                },
                methods:{
                    update(){
                        this.msg="欢迎";
                    },
                    destroy(){
                        this.$destroy();
                    }
                },
                //创建前状态  el和data并未初始化
                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.msg) 
                    console.log('组件实例刚刚创建,还未进行数据观测和事件配置');
                },
                created(){//常用  创建完毕状态   完成了data数据的初始化  el没有
                    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.msg); //已被初始化
                    console.log("实例已经创建完成,并且已经进行数据观测和事件配置")
                },
                beforeMount(){  //挂载前状态 完成了el和data初始化
                    this.msg="112233";
                    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.msg); //已被初始化
                    console.log("模板编译之前,还没挂载");
                },
                mounted(){//常用  挂载结束状态  完成挂载
                    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.msg); //已被初始化 
                    console.log("模板编译之后,已经挂载,此时才会有渲染页面,才能看到页面上数据的显示")
                },
                beforeUpdate(){   //更新前状态
                    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.msg); 
                },
                updated(){   //更新完成状态
                    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.msg); 
                },
                beforeDestroy(){   //销毁前状态
                    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.msg); 
                },
                destroyed(){  //销毁完成状态
                    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.msg)
                }
            });
        }
    </script>
</head>
<body>
    <div id="app">
        <input type="text" v-model="msg" />
        <button @click="update">更新数据</button>
        <button @click="destroy">销毁组件</button> 
    </div>
</body>
</html>

在控制台的console里面查看运行后的效果:

Vue中的生命周期实例分析

然后点击“更新数据”按钮,会看到input绑定的数据发生变化:

数据更新前:

Vue中的生命周期实例分析

数据更新后:

Vue中的生命周期实例分析

控制台显示的打印信息:

Vue中的生命周期实例分析

最后点击“销毁组件”按钮,查看控制台显示的打印信息:

Vue中的生命周期实例分析

这样,一个完整的Vue实例生命周期就结束了。

注意:Vue组件被销毁以后,这时如果在更新数据就不会有任何反应了,因为组件已经被销毁

到此,关于“Vue中的生命周期实例分析”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

vue
AI