在路由配置时,需要设置好子路由的父级路径。例如:
const routes: Routes = [ { path: 'parent', component: ParentComponent, children: [ { path: 'child', component: ChildComponent } ] } ];
在上述示例中,子路由的路径是 'child',但是需要设置其父级路径 'parent'。这样就能正确加载子组件了。
上一篇:Angular路由片段缺少父级:如何避免错误?
下一篇:Angular路由匹配器未调用子详情页。