form: {
...
childQuestionItems:[
...
{
...
score: 6
}
]
}
...
computed: {
totalScore(){
return this.form.childQuestionItems.reduce((sum,e)=> sum + Number(e.score || 0), 0)
}
}
想要computed 监听计算form.childQuestionItems
改变后所有score
的和
但是 computed并不监听。
对象:
向响应式对象中添加一个属性,并确保这个新属性同样是响应式的,且触发视图更新。它必须用于向响应式对象上添加新属性,因为 Vue 无法探测普通的新增属性 (比如 this.myObject.newProperty = ‘hi’)
数组:
Vue 不能检测以下数组的变动:
当你利用索引直接设置一个数组项时,例如:vm.items[indexOfItem] = newValue
当你修改数组的长度时,例如:vm.items.length = newLength
Vue.set( target, key, value),
target: 要更改的数据源(可以是对象或者数组)
key: 要更改的具体数据
value: 重新赋的值。
// 或
Array.prototype.splice
splice(start, deleteCount, item1)
this.$set(this.form.childQuestionItems,this.form.childQuestionItems[questionIndex],form)
添加一个标记属性,当所要监听对象改变后标记属性值+1 ,computed
计算标记属性。