Vue 设置添加 JSON 视图不更新
Posted 十万伏特の比卡超
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 设置添加 JSON 视图不更新相关的知识,希望对你有一定的参考价值。
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 视图不更新的主要内容,如果未能解决你的问题,请参考以下文章
Vue.set 向响应式对象中添加响应式属性,及设置数组元素触发视图更新