1
import {
    RoleGuard
} from '../guards/role-guard.service';

// [...]

children: 
{
    path: 'admin',
    component: AdminComponent,
    canActivate: [RoleGuard],
    **
    data: {
        role: 'Admin'
    } **
},

我不想硬编码角色字符串,我想从角色服务中获取角色,然后在路由模块中动态传递路由。

有没有办法在路由模块中调用服务。

4

0 回答 0