微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Angular 2自定义错误处理和路由器

我有一个自定义异常处理程序,如果发生任何异常(只是尝试它),它应该将用户带到自定义错误页面.

我试图使用Injector获取路由器的实例.
这样做的原因,我相信注入器将给现有的路由器实例并使用它我将能够路由用户.

任何想法为什么这不起作用或如何实现这一点?

谢谢 :)

@Injectable()
export class AppExceptionHandler extends ExceptionHandler{

constructor(){
    super(null,null);
}

call(exception:any,stackTrace?:any,reason?:string):void {
    console.log('call...')


    var providers = Injector.resolve([ROUTER_PROVIDERS]);
    var injector = Injector.fromresolvedProviders(providers);

    // this is causing issue,not sure it is the correct way
    let router : Router = injector.get(Router);

    // not executed
    console.log(router)

    // not executed 
    console.log('done...')
    router.navigate(["CustomErrorPage"]);
    }

}

答案 – 在2.0.0-beta.17中测试过
感谢Druxtan

1. Created a file app.injector.ts inside the app folder (app/app.injector.ts)
let appInjectorRef;

export const appInjector = (injector?) => {
    if (!injector) {
        return appInjectorRef;
    }

    appInjectorRef = injector;

    return appInjectorRef;
};
2. Added to the bootstrap in the main.ts 
bootstrap(AppComponent,[ROUTER_PROVIDERS,HTTP_PROVIDERS,provide(ExceptionHandler,{useClass : AppExceptionHandler})])
    .then((appRef) => appInjector(appRef.injector));
3. In the AppExceptionHandler,retrieved the Router instance as shown below
export class AppExceptionHandler {

    call(exception:any,reason?:string):void {

        let injectorApp = appInjector();
        let router = injectorApp.get(Router);
        let localStorageService = injectorApp.get(LocalStorageService);

        if(exception.message === '-1'){
            localStorageService.clear();
            router.navigate(["Login"]);
        }
    }

}

解决方法

我会以这种方式实现你的功能,因为这个类发生在依赖注入中:

@Injectable()
export class AppExceptionHandler extends ExceptionHandler {
  constructor(private router:Router) {
    super(null,null);
  }

  call(exception:any,reason?:string):void {
    console.log('call...')

    this.router.navigate(['CustomErrorPage']);
  }
}

并以这种方式注册您的句柄:

bootstrap(MyApp,[
  provide(ExceptionHandler,{useClass: AppExceptionHandler})
]);

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐