本文整理匯總了TypeScript中angular2/alt_router.RouteSegment類的典型用法代碼示例。如果您正苦於以下問題:TypeScript RouteSegment類的具體用法?TypeScript RouteSegment怎麽用?TypeScript RouteSegment使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了RouteSegment類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: routerOnActivate
// #docregion ngOnActivate
routerOnActivate(curr: RouteSegment): void {
let id = +curr.getParam('id');
this._service.getCrisis(id).then(crisis => {
if (crisis) {
this.editName = crisis.name;
this.crisis = crisis;
} else { // id not found
this.gotoCrises();
}
});
}
示例2: routerOnActivate
// #enddocregion ctor
// #docregion OnActivate
routerOnActivate(curr: RouteSegment): void {
let id = +curr.getParam('id');
this._service.getHero(id).then(hero => this.hero = hero);
}
示例3: routerOnActivate
routerOnActivate(curr: RouteSegment): void {
this._selectedId = +curr.getParam('id');
this._service.getCrises().then(crises => this.crises = crises);
}
示例4: routerOnActivate
routerOnActivate(curr: RouteSegment, prev?: RouteSegment, currTree?: Tree<RouteSegment>, prevTree?: Tree<RouteSegment>): void {
this._selectedId = +curr.getParam('id');
this._service.getHeroes().then(heroes => this.heroes = heroes);
}