我正在RequestOptions
通过执行以下操作来覆盖我的应用程序:
export class RequestOptionsService extends RequestOptions {
...
}
之后:
{ provide: RequestOptions, useClass: RequestOptionsService },
现在我想在我的孩子-RequestOptionsService中注入另一个服务,但问题是RequestOptions中有参数(不是依赖注入):
它将如何反映到我的 RequestOptionsService 孩子?