Я использую Angular Guard для защиты своих маршрутов, добавляю canActivate attr в основной маршрут, и он отлично работает, в то время как для вспомогательных маршрутов (ReportsRouteModule / RequestsRouteModule ...), если я хочу включить guardМне также нужно установить canActivate на каждом маршруте, я думаю, что это плохой способ использовать угловую защиту и тратить много времени. Так есть ли способ избежать этого и управлять им в главном маршруте.
Пожалуйста, посмотрите структуру моего приложения и некоторый код, как показано ниже: 1. Структура приложения:
|-- app.module.ts
|-- app-routing.module.ts(master route)
|-- app.component.ts
|-- report
|-- report-route.module.ts(sub route)
|-- report-aa
|-- report-bb
|-- report-cc
|-- request
|-- request-route.module.ts(sub route)
|-- request-aa
|-- request-bb
|-- request-cc
|-- etc.
код: основной маршрут
const routes: Routes = [
{path: '', redirectTo: 'home', pathMatch: 'full'},
{path: 'home', component: HomeComponent, canActivate: [AuthGuard]},
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule],
// providers: [AuthGuard]
})
export class AppRoutingModule {
суб-маршрут:
const routes: Routes = [
{
path: 'reports',
canActivateChild: [AuthGuard],
children: [
{path: '', redirectTo: 'reports', pathMatch: 'full'},
{path: 'A', component: AReportsComponent},
{path: 'B', component: BReportsComponent},
{path: 'C', component: CReportsComponent},
]
}
];
@NgModule({
imports: [
RouterModule.forChild(routes),
],
declarations: [
AReportsComponent,
BReportsComponent,
CReportsComponent,
]
})
export class ReportsRouteModule {
}