我正在使用快餐栏显示错误消息。我的代码中有auth-interceptor.ts文件,在这种情况下,我正在检查401错误并重定向到登录页面。 我的代码是,
return next.handle(authReq).do(event => { }, err => {
if (err instanceof HttpErrorResponse && err.status === 401) {
this.router.navigate(['logout']);
}
});
我可以在此文件中添加任何逻辑,以便关闭任何组件的小吃吧。