我有一个路由模块,它为许多其他模块设置了路由,我已经设法毫无问题地使用它们activatedRoute
。但是我现在创建了一个单一组件,当我尝试使用它时它返回一个空对象activatedRoute
。
路由模块看起来像这样:
const routes = [
{
path: 'path',
component: myComponent,
resolve: { resolver: myCustomResolver },
children: [
{
path: '',
children: [
{
path: 'users',
loadChildren: 'app/users.module#UsersModule'
},
{
path: 'articles',
loadChildren: 'app/articles.module#ArticlesModule'
}
]
},
// this is the new component
{ path: 'stories', component: StoriesComponent }
]
}
]
我activatedRoute
在模块和新组件中使用相同的方法:
export class StoriesComponent implements OnInit {
private routeData;
constructor(private activatedRoute: ActivatedRoute) {}
ngOnInit() {
// this is returning an empty object '{}'
this.activatedRoute.data.subscribe(data => {
this.routeData = data;
});
}
}
在这里的任何帮助将不胜感激。