在我的应用程序中,我使用我们自己的实现扩展了Angular Http类,添加了一些标题。
export class Secure_Http extends Http {
private getJwtUrl = environment.employerApiUrl + '/getJwt';
private refreshJwtUrl = environment.employerApiUrl + '/refreshJwt';
constructor(backend: ConnectionBackend, defaultOptions: RequestOptions, private storage: SessionStorageService) {
super(backend, defaultOptions);
}
然后,在app.mobule.ts文件中,我已经这样做了,所以每次使用我们的安全版本而不是基本版本:
@NgModule({
declarations: [
AppComponent
],
imports: [
....
],
providers: [
....
SessionStorageService,
{
provide: Http,
useFactory: secureHttpFactory,
deps: [XHRBackend, RequestOptions, SessionStorageService]
}
],
bootstrap: [AppComponent]
})
export class AppModule { }
export function secureHttpFactory(backend: XHRBackend, options: RequestOptions, sessionStorage: SessionStorageService) {
return new Secure_Http(backend, options, sessionStorage);
}
现在,在我们的服务中,我们使用标准构造函数/ DI方法:
@Injectable()
export class MySecurityService {
employerApiBaseUrl: string = environment.employerApiUrl;
constructor(private _http: Http) { } //, private _secureHttp: Secure_Http
getUser() : Observable<User> {
this.log('getUser', 'getting the current user');
var thisUrl = this.employerApiBaseUrl + '/jwt/userinfo';
var searchParam = {
jwt: this.getToken()
};
return this._http.post(thisUrl, searchParam)
.map((response: Response) => this.extractGetUserResponse(response))
.catch(this.handleError);
}
}
现在我的问题是,SecurityService还需要注入Secure_Http类/服务,因为那里有一个函数来获取JWT。
但是,只要我将Secure_Http类/服务添加为构造函数参数,我就会收到错误No provider for Secure_Http
。
所以,我的下一个想法是将Secure_Http添加到app.module.ts文件中的providers部分,紧挨着我指定的地方,Http需要使用Secure_Http。但是一旦我这样做,我就会收到错误No provider for ConnectionBackend
。如果我转身将ConnectionBackend
添加到提供者中,那么@NgModule上的Type 'typeof ConnectionBackend' is not assignable to type provider
就会出错。
我在哪里错了?我只需要在Secure_Http类上直接访问一个方法。这是必需的,因为它需要是我的一个帖子调用的参数。我不能只从Secure_Http服务/类调用它,因为参数已经传递...
答案 0 :(得分:3)
如果您明确要注入Secure_Http
,则需要提供
{
provide: Secure_Http,
useFactory: secureHttpFactory,
deps: [XHRBackend, RequestOptions, SessionStorageService]
},
{ provide: Http, useExisting: Secure_Http }
这样两者都会导致注入Secure_Http
constructor(private _http: Http) { }
constructor(private _secureHttp: Secure_Http) {}
但如果您知道Http
注入Secure_http
(正如您的配置所做),您可以直接投射
private _http: SecureHttp;
constructor(http: Http) {
this._http = http as Secure_Http;
}