8

我有一条这样的路线儿童路线:

{
    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。

4

2 回答 2

19

您可以通过使用 ActivatedRoute 上的 parent 属性来执行此操作 - 类似这样。

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

于 2017-02-27T11:03:33.723 回答
2

您可以通过确定其中是否只有一个斜杠来检查父路由:

 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
    );
  }
于 2019-02-14T14:59:20.207 回答