我有一条像这样的路线孩子的路线:
{
path: 'dashboard',
children: [{
path: '',
canActivate: [CanActivateAuthGuard],
component: DashboardComponent
}, {
path: 'wage-types',
component: WageTypesComponent
}]
}
在浏览器中,我想获得激活的父路线,如
host.com/dashboard/wage-types
如何获得/dashboard
,但可以使用Angular 2而不是JavaScript,但我也可以接受JavaScript代码,但主要是Angular 2.
答案 0 :(得分:11)
您可以使用ActivatedRoute上的父属性执行此操作 - 类似这样。
export class MyComponent implement OnInit {
constructor(private activatedRoute: ActivatedRoute) {}
ngOnInit() {
this.activatedRoute.parent.url.subscribe((urlPath) => {
const url = urlPath[urlPath.length - 1].path;
})
}
}
您可以在此处更详细地查看ActivatedRoute中的所有内容: https://angular.io/api/router/ActivatedRoute
答案 1 :(得分:0)
您可以通过确定其中是否只有一个斜线来检查父路由:
constructor(private router: Router) {}
ngOnInit() {
this.router.events.pipe(filter(e => e instanceof NavigationEnd)).subscribe((x: any) => {
if (this.isParentComponentRoute(x.url)) {
// logic if parent main/parent route
}
});
}
isParentComponentRoute(url: string): boolean {
return (
url
.split('')
.reduce((acc: number, curr: string) => (curr.indexOf('/') > -1 ? acc + 1 : acc), 0) === 1
);
}