0

我似乎难以理解有关处理多个商店的文档。这是在我的 APP 组件中...

  static getStores() {
    return [InventoryStore, CompanyInfoStore];
  }

   static getPropsFromStores() {
     return {
       ...InventoryStore.getState(),
       ...CompanyInfoStore.getState()
     };
   }

  componentDidMount() {
    const clientId = this.state.clientId;
    InventoryActions.getAll(clientId);
    CompanyInfoActions.getAll(clientId);
  }

InventoryActions 没有被“击中”,我的 props.items 中唯一的项目是公司信息。

有谁知道如何纠正这个?

非常感谢!

4

1 回答 1

0

我遇到过同样的问题。也许它会帮助你解决我提出的问题。我没有加入商店的属性,我为它们中的每一个使用单独的属性。

   static getPropsFromStores() {
     return {
       inventory: InventoryStore.getState(),
       company: CompanyInfoStore.getState()
     };
   }

希望它会帮助你。

于 2016-03-06T17:05:10.680 回答