收藏
回答

自定义组件 properties observe不触发

properties: {

show : {
type : Boolean,
value : false,
observe : () => {
console.log(123);
}
}
},
ready() {
let that = this;
setTimeout(() => {
console.log('timeout');
that.setData({
show : true
       });
}, 3000);
}


为什么更改了show的值,show属性的observe却没有触发

回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容