在properties属性中type为Array的observer中用setData改变该属性的值,会出现无限递归调用observer
Component({
properties: {
room: {
type: Array,
observer(room) {
this.setData({ room: [] })
}
}
}
}
type为String的正常,未测试其他类型。微信小程序怎么做性能优化-微信小程序开发。
在真机和模拟器上都可出现
本文网址:http://www.91bianli.com/weixinxiaochengxu/55696.html