我构建一个使用 jwt 令牌的应用程序。 仍然有一些路由不需要它们,但大多数调用都需要令牌。所以我想扩展 http 类并添加我的自定义标头。我仍然想使用原始的HTTP类进行正常调用。我在网上(和堆栈溢出上(阅读了有关此的内容。但是由于某种原因,我收到以下错误:
EXCEPTION: Error in :0:0 caused by: No provider for ConnectionBackend!
我的应用模块如下所示:
@NgModule({
declarations: [
MyApp,
DashboardPage,
],
imports: [
IonicModule.forRoot(MyApp)
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
DashboardPage,
],
providers: [
{
provide: [Http,SecureHttpService],
deps: [XHRBackend, RequestOptions],
useFactory: (backend: XHRBackend, defaultOptions: RequestOptions) => {
return new SecureHttpService(backend, defaultOptions);
},
useClass: SecureHttpService
},
{
provide: ErrorHandler,
useClass: IonicErrorHandler,
},
SecureHttpService
]
})
export class AppModule {}
服务扩展如下所示
import { Injectable } from '@angular/core';
import { Http, ConnectionBackend, Headers, RequestOptions, Response, RequestOptionsArgs} from '@angular/http';
@Injectable()
export class SecureHttpService extends Http {
constructor(backend: ConnectionBackend, defaultOptions: RequestOptions) {
super(backend, defaultOptions);
}
}
我想在另一个服务中使用它,如下所示:
constructor (private http: Http, private secureHttp: SecureHttpService) {}
我也尝试使用这样的提供(没有http(:
provide: SecureHttpService,
但是我尝试的所有方法都会导致相同的错误。我没有收到此错误以及为什么会发生此错误。
经过一些调试,我看到我添加了 SecureHttpService 2 次作为提供程序。 所以错误来了,因为我第二次提供"SecureHttpService"时,依赖项等不存在......我的错误。所以只需删除它,它就会起作用