Vue-this.$set
# 介绍
给data对象新增属性,并触发视图更新
给student对象添加age属性
data () {
return {
student: {
name: '',
sex: ''
}
}
}
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
直接给student赋值操作,虽然可以新增属性,但是不会触发视图更新
mounted () {
this.student.age = 24
}
1
2
3
2
3
# 原因
受 ES5 的限制,Vue.js 不能检测到对象属性的添加或删除。因为 Vue.js 在初始化实例时将属性转为 getter/setter,所以属性必须在 data 对象上才能让 Vue.js 转换它,才能让它是响应的。
要处理这种情况,我们可以使用$set()方法,既可以新增属性,又可以触发视图更新。
# 语法
this.$set(this.data,”key”,value’)
1
# 实例
mounted () {
this.$set(this.student,"age", 24)
}
1
2
3
2
3
上次更新: 2024/08/14, 04:14:33