收藏
回答

Component的properties相关bug

在properties属性中type为Array的observer中用setData改变该属性的值,会出现无限递归调用observer

Component({
  properties: {
    room: {
      type: Array,
      observer(room) {
        this.setData({ room: [] })
      }

    }

  }
}

type为String的正常,未测试其他类型。

在真机和模拟器上都可出现

回答关注问题邀请回答
收藏
登录 后发表内容