NGRX Redux 存储——只选择状态的一部分 returns 'undefined' 即使智能感知自动完成并且模型中的所有内容都匹配
NGRX Redux store -- selecting only a slice of the state returns 'undefined' even if intellisense autocompletes and everything in the model matches
使用@ngrx-redux/store,最新版本。我可以 select 通过字符串状态的任何部分。当我尝试访问 属性 时,出现 returns 'undefined' 错误。
语法:
this.loadedClients = this.store.select(
state => state.superUser.loadedClients
);
使用
this.loadedClients = this.store.select('superUser')
有效,但使用异步管道获取 loadedClients 属性 会导致标记混乱。
我在 Google 或文档中找不到示例。
是我的减速器内部的一个问题弄乱了 属性——它根本不应该工作。
使用@ngrx-redux/store,最新版本。我可以 select 通过字符串状态的任何部分。当我尝试访问 属性 时,出现 returns 'undefined' 错误。
语法:
this.loadedClients = this.store.select(
state => state.superUser.loadedClients
);
使用
this.loadedClients = this.store.select('superUser')
有效,但使用异步管道获取 loadedClients 属性 会导致标记混乱。
我在 Google 或文档中找不到示例。
是我的减速器内部的一个问题弄乱了 属性——它根本不应该工作。