【发布时间】:2018-11-14 02:26:00
【问题描述】:
在我的 Angular 模块路由中,我有一个包含子组件作为 tabitems 的父组件。
路由:
{
path: "teacher/:id", component: TeacherTabcontrolComponent,
children: [
{ path: 'dialogue', component: TeacherTabpageDialoguesComponent, data: { title: 'Dialoge' } },
{ path: 'settlements', component: TeacherTabpageSettlementsComponent, data: { title: 'Settlements' } },
{ path: 'timesheets', component: TeacherTabpageTimesheetsComponent, data: { title: 'Timesheets' } },
{ path: 'transactions', component: TeacherTabpageTransactionsComponent, data: { title: 'Transactions' } },
]
},
TeacherTabcontrolComponent中的选项卡式控件:
<ul class="nav nav-tabs">
<li routerLinkActive="active"><a [routerLink]="['dialogue']">Dialogue</a></li>
<li routerLinkActive="active"><a [routerLink]="['transactions']">Transactions</a></li>
<li routerLinkActive="active"><a [routerLink]="['settlements']">Settlements</a></li>
<li routerLinkActive="active"><a [routerLink]="['timesheets']">Timesheets</a></li>
</ul>
<div class="tab-content">
<router-outlet></router-outlet>
</div>
在父组件TeacherTabcontrolComponent 我需要从路由访问数据{title: ...}。我在我的 .ts 代码中尝试了以下内容:
constructor(
private _route: ActivatedRoute,
) {
this._route.url.subscribe((e) => {
console.log(e, this._route.snapshot.firstChild.data);
});
}
这很好用,但仅在第一次进入父组件时。当我从一个孩子切换到另一个孩子时,不会触发任何事件。
从一个孩子导航到另一个孩子时如何收到通知?
【问题讨论】:
-
为什么不在父组件中订阅
router.events?
标签: angular routing angular2-routing