当我用构造函数中的参数覆盖提供程序时如何添加注入?

时间:2017-02-02 11:25:03

标签: angular angular2-injection

我通过执行以下操作覆盖RequestOptions我的应用程序:

export class RequestOptionsService extends RequestOptions {
  ...
}

之后:

{ provide: RequestOptions, useClass: RequestOptionsService },

现在我想在我的孩子-RequestOptionsService中注入另一个服务,但问题是RequestOptions中有参数(不是依赖注入):

enter image description here

它将如何反映到我的RequestOptionsService子项?

0 个答案:

没有答案