vue 生命周期

 

写在前面:

vue 生命周期总共有 8 个钩子函数,分别是:

  • beforeCreate
  • created
  • beforeMount
  • mounted
  • beforeUpdate
  • updated
  • beforeDestory
  • destoryed

一、先来一段代码

<!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>vue生命周期学习</title>
  <script src="https://cdn.bootcss.com/vue/2.4.2/vue.js"></script>
</head>
<body>
  <div id="app">
    <h1>{{message}}</h1>
  </div>
</body>
<script>
  var vm = new Vue({
    el: '#app',
    data: {
      message: 'Vue的生命周期'
    },
    beforeCreate: function() {
      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) 
    },
    created: function() {
      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.message); //已被初始化
    },
    beforeMount: function() {
      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.message); //已被初始化  
    },
    mounted: function() {
      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.message); //已被初始化 
    },
    beforeUpdate: function () {
      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.message); 
    },
    updated: function () {
      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.message); 
    },
    beforeDestroy: function () {
      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.message); 
    },
    destroyed: function () {
      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.message)
    }
  })
</script>
</html>

从上面的截图可以看出:

1、在beforeCreated 这个时间段,vue实例还未初始化,data 和 methods 还未创建

2、Created 这个阶段 已经可以调用  data和methods,换句话说如果我们想调用methods方法或者使用data中的数据,最早只能在这个阶段调用,但是得注意,这个阶段 el 并未被创建

3、created钩子函数和beforeMount间的生命周期:

  • 首先会判断对象是否有 el 选项如果有的话就继续向下编译,如果没有 el 选项,则停止编译,也就意味着停止了生命周期,直到在该vue实例上调用vm.$mount(el):

    此时注释掉代码中:

    el: '#app', 然后运行到created的时候就停止了

  • 然后,我们往下看,template参数选项的有无对生命周期的影响。

    (1).如果vue实例对象中有template参数选项,则将其作为模板编译成render函数。

    (2).如果没有template选项,则将外部HTML作为模板编译。

    (3).可以看到template中的模板优先级要高于outer HTML的优先级。

    修改代码如下, 在HTML结构中增加了一串html,在vue对象中增加了template选项

    <!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>vue生命周期学习</title>

      <script src="https://cdn.bootcss.com/vue/2.4.2/vue.js"></script>

    </head>

    <body>

      <div id="app">

        <!--html中修改的-->

        <h1>{{message + '这是在outer HTML中的'}}</h1>

      </div>

    </body>

    <script>

      var vm = new Vue({

        el: '#app',

        template: "<h1>{{message +'这是在template中的'}}</h1>", //在vue配置项中修改的

        data: {

          message: 'Vue的生命周期'

        }

    </script>

    </html>

      得到的结果是:Vue的生命周期这是在template中的

     所以很明显,template 中的优先级高于 在外部定义的 html,el 优先寻找和编译template中的html,如果没有找到才回去外部寻找可编译的html标签

结论:这下就可以想想为什么el的判断要在template之前了~是因为vue需要通过el找到对应的outer template。

  • 在vue对象中还有一个render函数,它是以createElement作为参数,然后做渲染操作,而且我们可以直接嵌入JSX
  • new Vue({

        el: '#app',

        render: function(createElement) {

            return createElement('h1', 'this is createElement')

        }

    })

可以看到在页面中渲染的结果是:

                     this is createElement

所以综合排名优先级:

render函数选项 > template选项 > outer HTML.

4、beforeMount和mounted 钩子函数间的生命周期

可以看到此时是给vue实例对象添加$el成员,并且替换掉挂在的DOM元素。因为在之前console中打印的结果可以看到beforeMount之前el上还是undefined。

5、mounted        

6、 beforeUpdate钩子函数和updated钩子函数间的生命周期

当vue发现data中的数据发生了改变,会触发对应组件的重新渲染,先后调用beforeUpdateupdated钩子函数。我们在console中输入:

  vm.msg = "测试代码"

补充:

  • beforeUpdate是检测到data变化但是view还没有重新渲染,并且是可以修改data的最后时机,
  • updated是 改变的数据 view已经被重新渲染后

转自:https://segmentfault.com/a/1190000011381906 一篇写的非常好的博客,建议大家看看

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值