我正在使用一个自定义的http客户端,我为函数提供了一个函数作为一个依赖项。
{
provide: TranslateLoader,
useFactory: HttpLoaderFactory,
deps: [Client, Url]
},
在JiT工作正常但在AoT中我收到此错误消息:
ERROR in C:/PATH/src/$$_gendir/app/app.module.ngfactory.ts (1,1): Argument of type 'Client' is not assignable to parameter of type 'Http'. Property '_backend' is missing in type 'Client'.
但它应该无关紧要,因为它受到保护并且不会从外部访问属性,对吗?
我该怎么办?将这些受保护的属性添加到我的客户端将无法解决问题,我不知道如何让我的类扩展http而不会中断,因为在超级调用中我需要传递一个ConnectionBackend,我不知道它是如何工作的以及如何获得一个。
编辑: 我尝试过使用extend方法,但没有成功: 扩展时,如果我有像:
这样的构造函数@Injectable()
export class Client extends Http {
constructor(private authService: AuthService, providers: XHRBackend) {
super(providers, null);
this.onInit();
}
或喜欢
@Injectable()
export class Client extends Http {
constructor(private authService: AuthService) {
super(null, null);
this.onInit();
}
将http methots覆盖为例如
return super.get(url, this._getOptions(options)).catch((error: any) => this._handleError(error));
它会说:
zone.js:569 Unhandled Promise rejection: Cannot read property 'merge' of null ; Zone: <root> ; Task: Promise.then ; Value: TypeError: Cannot read property 'merge' of null
at mergeOptions (http.es5.js:1767)
答案 0 :(得分:1)
添加提供商
useFactory: (
backend: XHRBackend,
defaultOptions: RequestOptions) =>
new CustomHttp(backend, defaultOptions),
deps: [XHRBackend, RequestOptions]
答案 1 :(得分:0)
好吧,我终于设法找到了解决方案,我会在这里发帖以防其他人需要它: 我像这样扩展了Angualr的Http类:
@Injectable()
export class Client extends Http {
constructor(private authService: AuthenticationService, providers: XHRBackend) {
super(providers, new BaseRequestOptions ());
this.onInit();
}
现在它在JiT和AoT中运行良好。
编辑: 有了这个解决方案,我仍然需要导入HttpModule,但我使用的是一个不同于Http的类,这个类可以处理Oauth2令牌。