有角度 – 如何导航到兄弟路线?

前端之家收集整理的这篇文章主要介绍了有角度 – 如何导航到兄弟路线?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们假设我有这个路由器配置
export const EmployeeRoutes = [
   { path: 'sales',component: SalesComponent },{ path: 'contacts',component: ContactsComponent }
];

并通过此URL导航到SalesComponent

/department/7/employees/45/sales

现在我想去联系人,但是由于我没有绝对路线的所有参数(例如上面的例子中的部门ID,7),我更喜欢使用相对链接到达那里.

[routerLink]="['../contacts']"

要么

this.router.navigate('../contacts')

不幸的是不行.可能有一个明显的解决方案,但我没有看到.有人可以帮忙吗

如果您正在使用新的路由器(3.0.0-beta2),您可以使用ActivatedRoute导航到相对路径,如下所示:
constructor(private router: Router,private r:ActivatedRoute) {} 

///
goToContact() {
  this.router.navigate(["../contacts"],{ relativeTo: this.r });
}

猜你在找的Angularjs相关文章