watch
mpx
为小程序原生组件提供了观察和响应上的数据变动的能力。虽然计算属性在大多数情况下已满足需求,但有时也需要一个自定义的侦听器。当需要在数据变化时执行异步或开销较大的操作时,这个方式是最有用的。
适用于【页面 | 组件】
例如:
<template>
<view>
<view>{{question}}</view>
<view>{{answer}}</view>
</view>
</template>
<script>
import {createComponent} from '@mpxjs/core'
createComponent({
data: {
question: 'old',
answer: 'I cannot give you an answer until you ask a question!',
info: {
name: 'a'
},
arr: [{
age: 1
}]
},
watch: {
// 如果 `question` 发生改变,这个函数就会运行
question: function (newval, oldval) {
console.log(newval, ':', oldval) // test:old
this.answer = 'Waiting for you to stop typing...'
},
question: {
handler (newval, oldval) {
console.log(newval, ':', oldval) // test:old
this.answer = 'Waiting for you to stop typing...'
},
immediate: true // 立即执行一次
// deep: true // 是否深度观察
// sync: true // 数据变化之后是否同步执行,默认是进行异步队列
},
'info.name' (val) {
// 支持路径表达式
console.log(val) // b
},
'arr[0].age' (val) {
// 支持路径表达式
console.log(val) // 100
},
'question, answer' (val, old) {
// 同时观察多个值, val为数组个数, question变化时
console.log(val) // ['test', 'I cannot give you an answer until you ask a question!']
}
},
attached () {
// 3s之后修改数据
setTimeout(() => {
this.changeData()
}, 3000)
},
methods: {
changeData() {
this.question = 'test'
this.info.name = 'b'
this.arr[0].age = 100
}
}
})
</script>
除了 watch 选项之外,您还可以使用命令式的 this.$watch
API。