收藏
回答

Component 构造器不支持私有属性嘛?

Component({
  data: {
    dtest: 'dtest'
  },
  ptest: 'ptest',
  lifetimes: {
    created() {
      this.test = 'test'
      console.log({
        time: 'created',
        dtest: this.data.dtest, // dtest
        ptest: this.ptest, // undefined
        test: this.test // test
      })
    },
  },
})


这种方式的初始化不会生效

代码片段:https://developers.weixin.qq.com/s/EsM0cVmI7Pm7

最后一次编辑于  2020-12-28
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容
问题标签