Ionic3 / Ngx-translate - TranslateHttpLoader with external URL
问题 I'm loading the translation files from the server using TranslateHttpLoader in my app.module.ts like this: export function createTranslateLoader(http: Http) { return new TranslateHttpLoader(http, AppConfig.API_URL+'/static/i18n/', '.json'); } @NgModule({ ... imports: [ TranslateModule.forRoot({ loader: { provide: TranslateLoader, useFactory: (createTranslateLoader), deps: [Http] } }), ], ... }) Everything works fine, but i'm wondering if there is a way to catch event when the loader fails to