我正在尝试为我的根 url 实现基于角色的路由。例如,当用户登录时,我可以将他从 login.component 重定向到用户的仪表板页面。同样适用于管理员,也通过登录重定向到管理员仪表板页面。但是,如果用户打开 root url,如何使用角色重定向到特定的仪表板?
目前,我的根路由指向仪表板组件,该组件解析角色并重定向到所需的仪表板页面、用户或管理员。有没有办法消除仪表板组件?
应用路由.ts
export const AppRoutes: Routes = [
{
path: '',
redirectTo: 'dashboard',
pathMatch: 'full'
},
{
path: '',
component: AdminLayoutComponent,
canActivate: [AuthGuard],
canLoad: [AuthGuard],
children: [
{
path: 'dashboard',
loadChildren: './dashboard/dashboard.module#DashboardModule'
},
仪表板路由.ts
export const DashboardRoutes: Routes = [
{
path: '',
component: DashboardRedirectComponent,
},
测试 DashboardRedirect 组件:
export class DashboardRedirectComponent implements OnInit, AfterViewInit {
constructor(private auth: AuthenticationService, private router: Router) {
let currentUser = JSON.parse(localStorage.getItem('currentUser'));
if (this.auth.loggedIn()) {
if (currentUser['role'] == 'User') {
this.router.navigate(['/dashboard/user']);
}
if (currentUser['role'] == 'Admin') {
this.router.navigate(['/dashboard/admin']);
}
}
}
我尝试使用守卫甚至解析器来实现它,但没有成功。当我打开我的应用程序的根页面时,它导航到仪表板,几秒钟后导航到相应的仪表板页面,但我想立即导航用户并且没有额外的组件。有什么建议吗?