vue2 为什么beforeUpdate时的$el 和$data与updated时的一样

发布于 2022-09-06 00:43:22 字数 3831 浏览 26 评论 0

在运行如下代码的时候,发现beforeUpdate和updated在控制台中的输出是一样的,不应该是有DOM和数据的变化么

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <script type="text/javascript" src="https://cdn.jsdelivr.net/vue/2.1.3/vue.js"></script>
</head>
<body>

<div id="app">
     <p>{{ message }}</p>
</div>

<script type="text/javascript">
    
  var app = new Vue({
      el: '#app',
      data: {
          message : "xuxiao is boy" 
      },
       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>
</body>
</html>

在更改vm.message后,为什么beforeUpdate输出的和updated一样,个人理解的应该beforeUpdate的$el和$data都应该是修改前的数据才对,求指教

clipboard.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

浸婚纱 2022-09-13 00:43:22

把相应代码修改一下:

beforeUpdate: function() {
  console.group('beforeUpdate 更新前状态===============》');
  console.log("%c%s", "color:red", "el     : " + this.$el.innerHTML);
  console.log(this.$el);
  console.log("%c%s", "color:red", "data   : " + JSON.stringify(this.$data));
  console.log("%c%s", "color:red", "message: " + this.message);
  console.groupEnd();
},
updated: function() {
  console.group('updated 更新完成状态===============》');
  console.log("%c%s", "color:red", "el     : " + this.$el.innerHTML);
  console.log(this.$el);
  console.log("%c%s", "color:red", "data   : " + JSON.stringify(this.$data));
  console.log("%c%s", "color:red", "message: " + this.message);
  console.groupEnd();
},

注意 this.$el 是一个对象,相当于一个指针,因此当你使用 console.log 输出之后,其内容并没有真正显示,而当你点开下面的箭头展开具体内容时,显示的是该指针指向对象的当前内容,因此在你看来,两个都一样。

苄①跕圉湢 2022-09-13 00:43:22

在update和beforeupdate钩子中加入log:
console.log('真实dom结构:' + document.getElementById('app').innerHTML);
可以看到如下:
clipboard.png
why?
据官方介绍
beforeupdate:数据更新时调用,发生在虚拟 DOM 重新渲染和打补丁之前。
updated:由于数据更改导致的虚拟 DOM 重新渲染和打补丁,在这之后会调用该钩子。
分析原因:
1.之前的log打印的是虚拟dom的内容
2.至于虚拟dom,我的理解是vue2为了提高性能用了一种类似dom树缓存的介质,具体官网链接请看:
https://cn.vuejs.org/v2/guide...节点、树以及虚拟-DOM

谎言 2022-09-13 00:43:22

https://cn.vuejs.org/v2/api/#...
详情请看文档,beforeUpdate是因为dom还没有刷新,update是dom已经刷新了。所以不一样

clipboard.png

泼猴你往哪里跑 2022-09-13 00:43:22

这个问题还蛮常见的,在github的issues里好多人提到过这个问题,尤雨溪说着不算是一个bug,就是这么设计的,不过感觉这个钩子不是很常用吧,你可以用watch检测属性变化或者路由变化来替代。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文