如何在父路由-angular2中激活路由子节点?

时间:2016-10-07 10:35:46

标签: angular angular2-routing

如何获取当前路线的儿童姓名?

下面,我需要所有人知道compo2孩子在浏览它时。

{ path: 'compo1', component: Component1 },
{ path: 'compo2', loadChildren: 'app/compo.module#Compomodule' },
{ path: '', component: Component1 },

1 个答案:

答案 0 :(得分:0)

据我所知,你可以这样做:

constructor(route:ActivatedRoute) {
  route.children...
}