将ngrx store $注入模块提供者useFactory中作为参数

时间:2019-02-26 17:19:47

标签: angular ngrx ngrx-store angular-providers

我必须提供一个可配置的服务(使用特定的数据库服务),然后将数据放入ngrx存储。 为此,我想将数据库服务实例(可以通过函数)作为我的服务构造函数的参数。我决定使用

{ provide: INJECT_TOKEN,
  deps: [dbService, storeService]
  useFactory: (dbService, storeService) => {
      return new MyService(dbService, storeService);
}}

在useFactory中有什么方法可以将$存储注入作为参数吗?

0 个答案:

没有答案