Angular:仅在为 prod 构建时才获取模块未找到错误

otu*_*web 3 error-handling angular

更新

更新到 Angular v4 后,出现以下错误(我没有更改代码)。

ERROR in Invalid provider for ErrorHandler in /Users/otusweb/Documents/KeynoteTweet/web/node_modules/@angular/core/core.d.ts. useClass cannot be null.
       Usually it happens when:
       1. There's a circular dependency (might be caused by using index.ts (barrel) files).
       2. Class was used before it was declared. Use forwardRef in this case.

ERROR in ./src/main.ts
Module not found: Error: Can't resolve './$$_gendir/app/app.module.ngfactory' in '/Users/otusweb/Documents/KeynoteTweet/web/src'
 @ ./src/main.ts 4:0-74
 @ multi ./src/main.ts
Run Code Online (Sandbox Code Playgroud)

原始问题

我正在尝试在我的 angular 2 应用程序中设置一个自定义全局错误处理程序以将它们发送到 rollbar。我关注了https://www.bennadel.com/blog/3138-creating-a-custom-errorhandler-in-angular-2-rc-6.htmhttps://netbasal.com/angular-2-custom-异常处理程序 1bcbc45c3230

当我在开发模式下运行时,一切正常。一旦我为 prod 构建(ng build --prod),我就会在浏览器中收到以下错误:

Error: No ErrorHandler. Is platform module (BrowserModule) included?
Run Code Online (Sandbox Code Playgroud)

这是代码:error-handling.ts

import { RollbarService } from  'angular-rollbar/lib';
import { ErrorHandler } from '@angular/core';
import { Inject } from "@angular/core";
import { Injectable } from "@angular/core";
import { isDevMode } from '@angular/core';

@Injectable()
export default class CustomErrorHandler extends ErrorHandler {
  private rollbar:RollbarService;

  constructor(rollbar: RollbarService) {
    // The true paramter tells Angular to rethrow exceptions, so operations like 'bootstrap' will result in an error
    // when an error happens. If we do not rethrow, bootstrap will always succeed.
    super(true);

    this.rollbar = rollbar;
  }

  handleError( error: any ) : void {
    if(!isDevMode()) 
    {
    // send the error to the server
    this.rollbar.error(error.message, error);
    }
    else
    {
    console.log("skipping rollbar");
    }

    // delegate to the default handler
    super.handleError(error); 
  }
}
Run Code Online (Sandbox Code Playgroud)

和 app.module (没有导入)

    @NgModule({
  declarations: [
      AppComponent,
      PresentationsComponent,
      PresentationDetailComponent,
      SlideDetailComponent,
      HomeComponent,
      NotFoundComponent
  ],
  imports: [ 
      BrowserModule,
      FormsModule,
      HttpModule,
      AppRoutingModule,
      InlineEditorModule,
      RollbarModule.forRoot({
        accessToken: 'xxxxxtokenxxxx',
      }),
      NgbModule.forRoot()
  ],
  providers: [
    { provide: ErrorHandler, useClass: CustomErrorHandler },
    PresentationService,
    SlideService,
    Auth,
    {
      provide: AuthHttp,
      useFactory: authHttpServiceFactory,
      deps: [ Http, RequestOptions ]
    },
  AuthGuard,
  LoggedOutGuard],
  bootstrap: [AppComponent]
})
Run Code Online (Sandbox Code Playgroud)

我错过了什么?

otu*_*web 6

发现问题,我的自定义错误处理程序的应用程序模块中的导入缺少大括号...

import  CustomErrorHandler  from './error-handling';
Run Code Online (Sandbox Code Playgroud)

代替

import { CustomErrorHandler } from './error-handling';
Run Code Online (Sandbox Code Playgroud)