欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解Vue改变数组中对象的属性不重新渲染View的解决方案

程序员文章站 2022-07-20 18:54:49
在解决问题之前,我们先来了解下 vue响应性原理: vue最显著的一个功能是响应系统-- 模型只是一个普通对象,修改对象则会更新视图。 受到javascript的限制...

在解决问题之前,我们先来了解下 vue响应性原理: vue最显著的一个功能是响应系统-- 模型只是一个普通对象,修改对象则会更新视图。

受到javascript的限制,vue不能检测到对象属性的添加或删除,因为vue在初始化实列时将属性转为getter/setter,所以属性必须在data对象上才能让vue转换它。

但是vue可以使用 vue.set(object, key, value)方法将响应属性添加到嵌套的对象上:如下代码:

vue.set(obj, '_ishover', true);

或者可以使用vm.$set的实列方法,也是vue.set方法的别名:

this.$set(obj, '_ishover', false);

问题: 页面上多个item项, 当我鼠标移动上去的时候,我想在该数组中的对象添加一个属性 ishover=true, 当鼠标移出的时候,我想让该属性变为 ishover=false,然后希望改变对象的属性的时候让其重新渲染view层,重新执行rowclasses方法,然后该方法会判断 ishover是否等于true,如果为true的话,让其增加一个类名。

代码如下:

<!doctype html>
<html>
 <head>
  <title>演示vue</title>
  <style>
   * {margin: 0; padding: 0;}
   ul, li {list-style: none;}
   #app {width: 800px; margin: 20px auto; border:1px solid #ccc; border-bottom: none;}
   #app li {height: 32px; line-height: 32px; border-bottom: 1px solid #ccc;}
   #app li.bgcolor {background-color: red;}
  </style>
 </head>
 <body>
  <div id='app'>
   <ul>
    <li 
     v-for="(item, index) in items" 
     @mouseenter.stop="handlemousein(index)"
     @mouseleave.stop="handlemouseout(index)"
     :class="rowclasses(index)"
    >
     <span>{{item.name}}</span>
    </li>
   </ul>
  </div>
 </body>
 <script src="https://tugenhua0707.github.io/vue/vue1/vue.js"></script>
 <script type="text/javascript">
  new vue({
   el: '#app',
   data: {
    items: [
     {name: 'kongzhi'},
     {name: 'longen'},
     {name: 'tugenhua'}
    ]
   },
   computed: {
    
   },
   methods: {
    rowclasses (index) {
     return [
      {
       [`bgcolor`]: this.$data.items[index] && this.$data.items[index]._ishover
      }
     ]
    },
    handlemousein(index) {
     if (this.$data.items[index]._ishover) {
      return;
     }
     console.log(111); // 可以执行到
     this.$data.items[index]._ishover = true;
    },
    handlemouseout(index) {
     this.$data.items[index]._ishover = false;
    }
   }
  });
 </script>
</html>

可以看到鼠标移动上去的时候 没有效果。

解决的方案如下:

1. 使用 object.assign

鼠标移动上去的时候 代码可以改成如下:

this.$data.items[index]._ishover = true;
this.$data.items = object.assign({}, this.$data.items);

鼠标移出的时候,代码改成如下:

this.$data.items[index]._ishover = false;
this.$data.items = object.assign({}, this.$data.items);

代码如下:

<!doctype html>
<html>
 <head>
  <title>演示vue</title>
  <style>
   * {margin: 0; padding: 0;}
   ul, li {list-style: none;}
   #app {width: 800px; margin: 20px auto; border:1px solid #ccc; border-bottom: none;}
   #app li {height: 32px; line-height: 32px; border-bottom: 1px solid #ccc;}
   #app li.bgcolor {background-color: red;}
  </style>
 </head>
 <body>
  <div id='app'>
   <ul>
    <li 
     v-for="(item, index) in items" 
     @mouseenter.stop="handlemousein(index)"
     @mouseleave.stop="handlemouseout(index)"
     :class="rowclasses(index)"
    >
     <span>{{item.name}}</span>
    </li>
   </ul>
  </div>
 </body>
 <script src="https://tugenhua0707.github.io/vue/vue1/vue.js"></script>
 <script type="text/javascript">
  new vue({
   el: '#app',
   data: {
    items: [
     {name: 'kongzhi'},
     {name: 'longen'},
     {name: 'tugenhua'}
    ]
   },
   computed: {
    
   },
   methods: {
    rowclasses (index) {
     return [
      {
       [`bgcolor`]: this.$data.items[index] && this.$data.items[index]._ishover
      }
     ]
    },
    handlemousein(index) {
     if (this.$data.items[index]._ishover) {
      return;
     }
     console.log(111); // 可以执行到
     this.$data.items[index]._ishover = true;
     this.$data.items = object.assign({}, this.$data.items);
    },
    handlemouseout(index) {
     this.$data.items[index]._ishover = false;
     this.$data.items = object.assign({}, this.$data.items);
    }
   }
  });
 </script>
</html>

2. 使用vue.set(object, key, value)方法将响应属性添加到嵌套的对象上。

鼠标移动上去的时候 代码可以改成如下:

this.$set(this.$data.items[index], '_ishover', true);

鼠标移出的时候,代码改成如下:

this.$set(this.$data.items[index], '_ishover', false);

所有的代码如下:

<!doctype html>
<html>
 <head>
  <title>演示vue</title>
  <style>
   * {margin: 0; padding: 0;}
   ul, li {list-style: none;}
   #app {width: 800px; margin: 20px auto; border:1px solid #ccc; border-bottom: none;}
   #app li {height: 32px; line-height: 32px; border-bottom: 1px solid #ccc;}
   #app li.bgcolor {background-color: red;}
  </style>
 </head>
 <body>
  <div id='app'>
   <ul>
    <li 
     v-for="(item, index) in items" 
     @mouseenter.stop="handlemousein(index)"
     @mouseleave.stop="handlemouseout(index)"
     :class="rowclasses(index)"
    >
     <span>{{item.name}}</span>
    </li>
   </ul>
  </div>
 </body>
 <script src="https://tugenhua0707.github.io/vue/vue1/vue.js"></script>
 <script type="text/javascript">
  new vue({
   el: '#app',
   data: {
    items: [
     {name: 'kongzhi'},
     {name: 'longen'},
     {name: 'tugenhua'}
    ]
   },
   computed: {
    
   },
   methods: {
    rowclasses (index) {
     return [
      {
       [`bgcolor`]: this.$data.items[index] && this.$data.items[index]._ishover
      }
     ]
    },
    handlemousein(index) {
     if (this.$data.items[index]._ishover) {
      return;
     }
     console.log(111); // 可以执行到
     this.$set(this.$data.items[index], '_ishover', true);
    },
    handlemouseout(index) {
     this.$set(this.$data.items[index], '_ishover', false);
    }
   }
  });
 </script>
</html>


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。