遇到一个问题:
对象A = 对象List[index], 当A的值被修改了,List[index]中的值也变了。
解决方法:
1.将数组中的一对象赋给某一对象时:
this.A=JSON.parse(JSON.stringify(this.List[index]));
2.将某一对象赋给数组中的一对象时:
this.$set(this.List,index,JSON.parse(JSON.stringify(this.A)))
遇到一个问题:
对象A = 对象List[index], 当A的值被修改了,List[index]中的值也变了。
解决方法:
1.将数组中的一对象赋给某一对象时:
this.A=JSON.parse(JSON.stringify(this.List[index]));
2.将某一对象赋给数组中的一对象时:
this.$set(this.List,index,JSON.parse(JSON.stringify(this.A)))