Angular7:Global Guard-CanDeactivate界面

时间:2019-06-18 08:17:48

标签: angular angular7 angular-router-guards angular-guards angular7-router

我对Angular非常陌生,未能找到我要搜索的答案。

我现在面临的问题是,当我切换到另一条路线时,所有全局错误消息都不会消失。

我试图通过使用CanDeactivate接口解决此问题。 这是我的canDeactivate方法:

  canDeactivate(): Observable<boolean> {
    console.log('delete test');
    this.globalMessageService.remove(GlobalMessageType.MSG_TYPE_ERROR);
    return of(true);
  }

此方法是在名为cms-page.guard.ts的服务中创建的,通过在特定页面中使用此方法,它似乎可以正常工作。如果我在“课程”页面中使用此示例:

const routes: Routes = [
  {
    path: 'courses',
    canActivate: [CmsPageGuards],
    canDeactivate: [CmsPageGuards],
    data: { pageLabel: 'courses' },
    component: CoursesPageComponent
  }
];

基本上,我所做的是在特定页面上应用canDeactivate方法。 我想知道是否可以创建一个全局应用canDeactivate方法的Guard,因此当您更改为其他路由时,它是否适用于所有页面?

1 个答案:

答案 0 :(得分:2)

我认为您的目标是处理全局错误。您不需要使用canDeactivateGuard。您可以通过ErrorHandler接口来实现。

import { ErrorHandler, Injectable} from '@angular/core';
@Injectable()
export class GlobalErrorHandler implements ErrorHandler {
constructor() { }
      handleError(error) {  //override handleError method
     //handle all errors here 
         console.log('error')
         // IMPORTANT: Rethrow the error otherwise it gets swallowed
         throw error;
      } 
}

现在我们只需要告诉angular使用GlobalErrorHandler而不是默认值

@NgModule({


 declarations: [AppComponent],
  imports: [BrowserModule],
  bootstrap: [AppComponent],
  providers: [
    {
      provide: ErrorHandler, 
      useClass: GlobalErrorHandler
    }
  ]
})
export class AppModule { }

对于app.module.ts中具有声明的所有组件,将使用GlobalErrorHandler。 希望对您有帮助!