vue修改数组对象触发视图更新问题

vue修改数组对象触发视图更新问题



- 直接修改数组元素是无法触发视图更新
比如:

	 this.item.array[0] = 'b'

- 直接给对象添加元素也不会触发视图更新

	 this.item.aa = 'aa'

均不会触发视图更新



- 触发视图更新的方法有如下几种
1. Vue.set
可以设置对象或数组的值,通过key或数组索引,可以触发视图更新

数组修改

Vue.set(array, indexOfItem, newValue)

对象修改

Vue.set(obj, keyOfItem, newValue)





2. Vue.delete
删除对象或数组中元素,通过key或数组索引,可以触发视图更新

数组修改

Vue.delete(array, indexOfItem)

对象修改

Vue.delete(obj, keyOfItem)





3. 数组对象直接修改属性,可以触发视图更新

this.array[0].isShow= true;
this.array.forEach(function(item){
     
    item.isShow= true;
});





4. 数组赋值为新数组,可以触发视图更新

this.array = this.array.filter(...)
this.array = this.array.concat(...)





5.Vue提供了如下的数组的变异方法,可以触发视图更新

push()
pop()
shift()
unshift()
splice()  
sort()
reverse()

你可能感兴趣的:(vue.js)