问题汇总:解决vue中this.$set()不更新页面问题
this.$set()方法有一种情况,就是当你要设置的key已经存在于这个对象或数组中的时候,它只会更改data并不会为该key添加响应检测,所以解决这个问题的办法就是在设置值之前先把这个属性删除掉,然后再进行this.$set
解决办法
//先删除要更改的参数,然后再更新
this.$delete(this.obj, "name")this.$delete(this.dataList[index], 'other_net_weight')//更新this.$set(this.dataList[index], 'other_net_weight', res)
这样就解决this.$set()不生效的问题