vue 视图不更新的几种解决办
vue.js视图不更新的三种解决办法://1.Vue.setVue.set(this.objArr,index,newValue)//(数组,索引,值)//2.prototype.splicethis.objArr.splice(index,1,newValue) //(索引,长度,值)//3.Object.assignthis.objArr[index] = newV...
·
vue.js视图不更新的三种解决办法:
//1.Vue.set
Vue.set(this.objArr,index,newValue) //(数组,索引,值)
//2.prototype.splice
this.objArr.splice(index,1,newValue) //(索引,长度,值)
//3.Object.assign
this.objArr[index] = newValue
this.objArr = Object.assign({},this.objArr) //存在弊端,该objArr的类型会从数组变成对象
更多推荐
已为社区贡献1条内容
所有评论(0)