Vue 响应式数组和对象失效的解决

前因

我们都知道,vue 最大的特点,在于开发的时候让开发者脱离了 dom 的操作,而关注逻辑本身和数据,让我们编写前端从寻找 dom,变成了寻找数据本身的联系。

直接用,js本身的数组方法,是无法让数据和视图直接更新的,因为vue的响应式处理,无法检测更深层次的对应关系。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<template>
<div class="hello">
<h1>{{ msg }}</h1>
<h2>
<p v-for="(item,index,key) of arr" :key='key' @click="change(index)" >
{{item.text}}
{{index}}
</p>
</h2>
</div>
</template>

<script>
export default {
name: 'HelloWorld',
data() {
return {
arr:[
{ text:'测试'},
{ text:'万海'},
{ text:'海淘'},
{ text:'测试'},
{ text:'测试'},
{ text:'测试'},
]
}
},
props: {
msg: String
},
methods: {
change(index) {
console.log('我删除了',this.arr[index].text);
// delete this.arr[index];
this.$set(this.arr, index, '错误的')
console.log(this.arr);
}
},
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h3 {
margin: 40px 0 0;
}
</style>