码迷,mamicode.com
首页 > Web开发 > 详细

Vue 设置添加 JSON 视图不更新

时间:2018-08-30 12:23:42      阅读:632      评论:0      收藏:0      [点我收藏+]

标签:obj   for   let   stat   this   设置   else   als   elements   

 1         for (let i = 0; i < this.gotup.length; i++) {
 2                 const element = this.gotup[i];
 3                 console.log(element);
 4                 if (element) {
 5                 }
 6                 for (let io = 0; io < element.LstAttValue.length; io++) {
 7                     const elements = element.LstAttValue[io];
 8                     if (ValueId == elements.AttValueId) {
 9                         // Object.assign(elements, {不起作用的
10                         //     isTrue: false 
11                         // });
12                         // elements.isTrue = true;  不起作用的
13                         // elements[isTrue] = true; 不起作用的
14                         this.$set(elements, "isTrue", true); // 这样才对
15                     } else {
16                         this.$set(elements, "isTrue", false);
17                     }
18                     console.log(elements);
19                 }
20             }

 

Vue 设置添加 JSON 视图不更新

标签:obj   for   let   stat   this   设置   else   als   elements   

原文地址:https://www.cnblogs.com/hasubasora/p/9559407.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!