1

我想在其他 /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' } ] } ];

4

1 回答 1

0

答案是肯定的。问题是我没有在组件上定义的路由配置上添加 :id 路径(因为我使用的是 WebpackAsyncRoute)。所以与通配符路径无关

于 2016-08-05T10:37:12.110 回答