我在 Angular 项目上的秋田状态管理实施中遇到了错误。我将提供一个简短的答案,以便像我这样的人可以解决这个问题。
在秋田文档和示例中对此没有明确的理解。
export interface ItemState extends EntityState<Item> {}
@StoreConfig({ name: 'items' })
export class ItemsStore extends EntityStore<ItemState> {
constructor() {
super();
}
}
我收到错误:StaticInjectorError(Platform: core)[ItemsService -> ItemsStore]: NullInjectorError: No provider for ItemsStore!
它应该工作