假设我得到了这个路由配置:
{ path: 'contact', component: ContactComponent, children: [
{ path: ':id', component: ContactDetailComponent },
{ path: 'chat', component: ContactChatComponent, outlet: 'chat' }
]}
如果我导航到
/contact/7
我到达联系方式,但我如何从那里到达辅助路线?也就是说,我需要在我的[routerLink]
?
我知道我可以使用绝对 URL 轻松到达那里,例如
/contact/(7//chat:chat)
但是如果我需要在这里使用相对链接怎么办?那必须采取什么形式?我试过了
[routerLink]="['chat:chat']"
[routerLink]="['//chat:chat']"
[routerLink]="['(7//chat:chat)']"
等等,但这些都没有创建实际有效的链接(见上文)。
我在使用路由器 3.0.0-beta2 的 RC4 上。