サービスを私のCustomExceptionHandlerに注入しようとすると、角インジェクタはサービスを見つけることができません。角2インジェクタがサービスを見つけることができませんCustomExceptionHandler
エラー:Uncaught Can't resolve all parameters for CustomExceptionHandler: (?).
セットアップ:
CustomExceptionHandler
import { ExceptionHandler } from '@angular/core';
import { ServiceA } from '../services/a.service';
export class CustomExceptionHandler extends ExceptionHandler {
constructor(private serviceA: ServiceA) {
super(null, null);
}
call(error, stackTrace = null, reason = null) {
//do something with the service
}
}
app.module
@NgModule({
declarations: [
...
],
imports: [
...
],
providers: [
ServiceA,
{ provide: ExceptionHandler, useClass: CustomExceptionHandler },
],
bootstrap: [AppComponent],
})
export class AppModule { }
'インポート{サービス}から '../サービス/ A.SERVICE';'おそらく{ 'インポートする必要があります(サービス名に「A」がありません) –