假设我们有以下路线:
{
path: 'a',
component: AComponent,
children: [
{
path: '',
component: BComponent
},
{
path: '',
component: CComponent,
children: [
{ path: '', component: DComponent }
]
}
]
}
并将以下网址粘贴到浏览器的地址栏中:
http://localhost:4200/a
问题
答案 0 :(得分:0)
鉴于您没有收到任何类型的错误,路由器将为您提供找到的第一个匹配路由。在这种情况下BComponent。只有一个组件可以在路由器插座中显示(否则你需要像auxRoute这样的东西)。
如果CComponent有一条像' c'您可以从路由\n
访问它,然后您将在CComponents路由器插座中获得带有DComponent的CComponent。
希望有所帮助。