假设我得到了这个路由器配置
export const EmployeeRoutes = [
{ path: 'sales', component: SalesComponent },
{ path: 'contacts', component: ContactsComponent }
];
SalesComponent
并已通过此 URL导航到
/department/7/employees/45/sales
现在我想去contacts
,但由于我没有绝对路线的所有参数(例如,7
在上面的示例中,部门 ID)我更喜欢使用相对链接到达那里,例如
[routerLink]="['../contacts']"
或者
this.router.navigate('../contacts')
不幸的是,这不起作用。可能有一个明显的解决方案,但我没有看到它。任何人都可以在这里帮忙吗?