问题描述:在Angular 9应用程序中,使用CanActivate守卫时,当路由重定向时,守卫不起作用。
解决方法:
import { CanActivate } from '@angular/router';
import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
@Injectable()
export class MyAuthGuard implements CanActivate {
constructor(private authService: AuthService) {}
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean {
// 守卫逻辑
}
}
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean {
if (this.authService.isLoggedIn()) {
// 用户已登录,允许访问
return true;
} else {
// 用户未登录,重定向到登录页
this.router.navigate(['/login'], { queryParams: { returnUrl: state.url }});
return false;
}
}
在上面的示例中,我们通过调用AuthService的isLoggedIn方法来检查用户是否已经登录。如果用户已经登录,我们返回true,允许访问路由。否则,我们使用Router的navigate方法进行重定向,并将当前URL作为查询参数传递给登录页。
const routes: Routes = [
{ path: 'dashboard', component: DashboardComponent, canActivate: [MyAuthGuard] },
// 其他路由配置
];
在上面的示例中,我们将MyAuthGuard守卫应用于/dashboard路由。当用户访问/dashboard时,CanActivate守卫将会被调用。
通过以上步骤,你应该能够在路由重定向时正确使用CanActivate守卫。