他の /parent/child の横に /parent/:id のような動的ルートが必要です。
私はこのようなことを試みましたが成功しませんでした:
export const routes: RouterConfig = [
{ path: '', component: HomeComponent },
{ path: 'parent', component: ParentComponent,canActivate: [ WebpackAsyncRoute ],
children: [
{ path: ':id', component: 'ParamComponent' },
{ path: 'child', component: 'ChildComponent' },
{ path: 'anotherchild', component: 'AnotherChildComponent' }
]
}
];