我在过去的 4 个小时里一直在寻找这个,但找不到任何答案。
我写了几个 Authguard,我希望能够告诉路由器,如果其中一些是真的,它应该给予许可,但是 Angular 2 路由器检查每个警卫是否为真然后给予许可,否则它将阻止链接,是有什么好的方法吗?我可以写几个身份验证守卫,但我认为这不是一个好主意。
例如,我希望/profile
管理员和超级用户可以访问该页面,但我不希望普通用户访问该/profile
页面
我在过去的 4 个小时里一直在寻找这个,但找不到任何答案。
我写了几个 Authguard,我希望能够告诉路由器,如果其中一些是真的,它应该给予许可,但是 Angular 2 路由器检查每个警卫是否为真然后给予许可,否则它将阻止链接,是有什么好的方法吗?我可以写几个身份验证守卫,但我认为这不是一个好主意。
例如,我希望/profile
管理员和超级用户可以访问该页面,但我不希望普通用户访问该/profile
页面
您可以将您的守卫注入一个父 Guard 并自己控制:
@Injectable()
class Guard implements CanActivate {
constructor(private guard1: Guard1, private guard2: Guard2) {}
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot):boolean {
// I'm assuming that your guard1.canActivate and guard2.canActivate return boolean
return guard1.canActivate() || guard2.canActivate();
}
}
在您的路线配置中仅使用Guard
警卫:
{
path : 'route',
canActivate : Guard
...
}
当然,您可以在其他路线中使用guard1
和。guard2
您可以CanLoad
在身份验证保护中使用接口。例如,假设您的路线就是这样;
{
path: 'profile',
component: 'ProfileComponent',
canLoad: [
AuthenticationGuard
]
}
在你的AuthenticationGuard
,实现CanLoad
接口。如果用户没有此链接的权限,则不会加载此路由的模块。
export class AuthenticationGuard implements CanLoad {
canLoad(route: Route): Observable<boolean> | Promise<boolean> | boolean {
//in here ask your authentication service to check current user has permission for this route
}
}
希望对您有所帮助,如有其他问题,请告诉我。