wechat-miniprogram / mobx-miniprogram-bindings

小程序的 MobX 绑定辅助库
MIT License
206 stars 20 forks source link

配置对象放到Page参数里会无效? #2

Closed Lynn-cc closed 4 years ago

Lynn-cc commented 4 years ago

这样会导致数据观察失败,无法更新?

Page({
   myStore: {
      store,
      fields: ['numA', 'numB', 'sum'],
      actions: ['update'],
    },
  onLoad() {
    this.storeBindings = createStoreBindings(this, this.myStore)
  }
})
LastLeaf commented 4 years ago

嗯。请不要直接放在 Page 配置中。