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的类型会从数组变成对象

 

 

Logo

前往低代码交流专区

更多推荐