我似乎难以理解有关处理多个商店的文档。这是在我的 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 中唯一的项目是公司信息。
有谁知道如何纠正这个?
非常感谢!