8

次のようなルートの子を持つルートがあります。

{
    path: 'dashboard',
    children: [{
        path: '',
        canActivate: [CanActivateAuthGuard],
        component: DashboardComponent
    }, {
        path: 'wage-types',
        component: WageTypesComponent
    }]
}

そして、ブラウザで、アクティブ化された親ルートを次のように取得したい

host.com/dashboard/wage-types

/dashboardJavaScriptではなくAngular 2で可能ですが、JavaScriptコードも受け入れることができますが、主要なAngular 2 .

4

2 に答える 2