我正在使用 Angular4。我有一些 BarComponent 显示在 app.component 模板中(对于几乎所有页面,它就像菜单栏)。我想获取“属于”另一个组件的路由器参数,而不是 BarComponent 的子项/子项。
例如,我有路线:
/some-section-name/:id{here may be sub-routes}
我可以使用 BarComponent 中的 Angular 方法获得这个 :id 参数吗?
结构如下:
|- app.component
|- bar.component
|- (lazy load) some section
|- here is the component that has this :id param