在Angular中,是否可以根据用户是否通过身份验证来加载不同的模块?

时间:2018-12-26 15:15:16

标签: angular angular-router angular-router-guards angular-route-guards

例如,如果用户经过身份验证,URL:www.example.com应加载一个模块,否则应加载另一个模块。

我已经尝试过使用防护装置,但是并没有达到我的预期。

我对Angular很陌生。如果有人可以编写示例路由数组进行演示,将不胜感激。 :)

如果用户未通过身份验证,则我希望我的路由工作如下:

  {
    path: '',
    loadChildren: './home/home.module#HomeModule'
  },
  {
    path: 'login',
    loadChildren: './login/login.module#LoginModule'
  },
  {
    path: 'register',
    loadChildren: './register/register.module#RegisterModule'
  }

否则,如果用户通过了身份验证,则我希望我的路由工作如下:

  {
    path: '',
    pathMatch: 'full',
    redirectTo: '/dashboard'
  },
  {
    path: 'dashboard',
    loadChildren: './dashboard/dashboard.module#DashboardModule'
  },
  {
    path: 'profile',
    loadChildren: './user-profile/user-profile.module#UserProfileModule'
  }

1 个答案:

答案 0 :(得分:1)

是的,您可以使用CanActivate保护(检查路由访问权限)来实现。

CanActivate 检查用户是否可以访问路线。

已经说过,我希望您在guardCheck之后重定向到其他路由。

您不应具有路由器配置来容纳同一路由上的两个不同组件或模块。 您可以将它们添加为路由的子级,并确定是否需要在同一条路由上进行路由。

更新

我遇到了matcher的概念,该概念可用于在同一路径上加载两条不同的路线:

const routes: Routes = [{
  path: 'list',
  matcher: matcherForAuthenticatedRoute,
  loadChildren: './user/register#RegisterModule'
},
{
  path: 'list',
  matcher: matcherForTheOtherRoute,
  loadChildren: './user/home#HomeModule'
}]

现在,我们的匹配逻辑取决于两个函数,如下所示:

export function matcherForAuthenticatedRoute(
 segments: UrlSegment[],
 group: UrlSegmentGroup,
 route: Route) {
  const userService =  appInjector.get(MyService);
  const isPathMatch = segments[0].path === route.path;
  const isUserAuthenticated = userService.isUserAuthenticated('userId');      
  if(isPathMatch && isUserTypeMatch) { 
    return {consumed: [segments[0]]};
  } else {
    return null;
  }
}

我们可以在引导应用程序后定义appInjector并将其导出以供使用:

appInjector = componentRef.injector;