我无法使用paramMap提取ID,因为它即将为空。
有人可以帮助我了解路由器配置中是否存在一起显示列表和详细信息组件的错误?
大多数示例显示列表>详细信息导航
app-routing.module。
path: 'environments',
canActivate: [AuthGuard],
loadChildren: './employee/employee.module#EmployeeModule'
employee-routing.module.ts
path: '',
component: ListComponent,
children: [
{
path: ':id',
component: DetailComponent
}
]
需要显示列表和详细信息组件以及根据路由参数更改的详细信息组件