0

我在过去的 4 个小时里一直在寻找这个,但找不到任何答案。

我写了几个 Authguard,我希望能够告诉路由器,如果其中一些是真的,它应该给予许可,但是 Angular 2 路由器检查每个警卫是否为真然后给予许可,否则它将阻止链接,是有什么好的方法吗?我可以写几个身份验证守卫,但我认为这不是一个好主意。

例如,我希望/profile管理员和超级用户可以访问该页面,但我不希望普通用户访问该/profile页面

4

2 回答 2

1

您可以将您的守卫注入一个父 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

于 2017-03-16T12:16:39.763 回答
1

您可以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
     }
}

希望对您有所帮助,如有其他问题,请告诉我。

于 2017-03-16T12:34:03.860 回答