次のようなルートの子を持つルートがあります。
{
path: 'dashboard',
children: [{
path: '',
canActivate: [CanActivateAuthGuard],
component: DashboardComponent
}, {
path: 'wage-types',
component: WageTypesComponent
}]
}
そして、ブラウザで、アクティブ化された親ルートを次のように取得したい
host.com/dashboard/wage-types
/dashboard
JavaScriptではなくAngular 2で可能ですが、JavaScriptコードも受け入れることができますが、主要なAngular 2 .