用于同时显示列表和详细信息组件的路由配置

时间:2019-04-23 05:53:13

标签: angular routing angular7 routeconfig

我无法使用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
   }
]

需要显示列表和详细信息组件以及根据路由参数更改的详细信息组件

0 个答案:

没有答案