本文整理汇总了TypeScript中angular2/alt_router.Router类的典型用法代码示例。如果您正苦于以下问题:TypeScript Router类的具体用法?TypeScript Router怎么用?TypeScript Router使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Router类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: gotoCrises
// #docregion gotoCrises
gotoCrises() {
let crisisId = this.crisis ? this.crisis.id : null;
// Pass along the hero id if available
// so that the CrisisListComponent can select that hero.
// Add a totally useless `foo` parameter for kicks.
// #docregion gotoCrises-navigate
this._router.navigateByUrl(`/crisis-center/${crisisId};foo=foo`);
// #enddocregion gotoCrises-navigate
}
开发者ID:wardbell,项目名称:docs-new-router,代码行数:10,代码来源:crisis-detail.component.ts
示例2: gotoHeroes
gotoHeroes() {
let heroId = this.hero ? this.hero.id : null;
// Pass along the hero id if available
// so that the HeroList component can select that hero.
// Add a totally useless `foo` parameter for kicks.
// #docregion gotoHeroes-navigate
this._router.navigateByUrl(`/heroes/${heroId};foo=foo`);
// #enddocregion gotoHeroes-navigate
}
开发者ID:wardbell,项目名称:docs-new-router,代码行数:9,代码来源:hero-detail.component.ts
示例3: gotoHeroes
// #enddocregion OnActivate
// #docregion gotoHeroes
gotoHeroes() {
// Like <a [routerLink]="['/heroes']">Heroes</a>
this._router.navigateByUrl('/heroes');
}
开发者ID:wardbell,项目名称:docs-new-router,代码行数:7,代码来源:hero-detail.component.1.ts
示例4: gotoCrises
// #enddocregion cancel-save
// #docregion gotoCrises
gotoCrises() {
// Like <a [routerLink]="[/crisis-center/]">Crisis Center</a
this._router.navigateByUrl('/crisis-center/');
}
开发者ID:wardbell,项目名称:docs-new-router,代码行数:7,代码来源:crisis-detail.component.1.ts
示例5: onSelect
// #docregion select
onSelect(crisis: Crisis) {
this._router.navigateByUrl( `/crisis-list/${crisis.id}`);
}
开发者ID:wardbell,项目名称:docs-new-router,代码行数:4,代码来源:crisis-list.component.1.ts
示例6: onSelect
// #docregion select
onSelect(hero: Hero) {
// #docregion nav-to-detail
this._router.navigateByUrl( `/heroes/${hero.id}`);
// #enddocregion nav-to-detail
}
开发者ID:wardbell,项目名称:docs-new-router,代码行数:6,代码来源:hero-list.component.1.ts
示例7: onSelect
// #enddocregion isSelected
// #docregion select
onSelect(hero: Hero) {
this._router.navigateByUrl(`/heroes/${hero.id}`);
}
开发者ID:wardbell,项目名称:docs-new-router,代码行数:6,代码来源:hero-list.component.ts
注:本文中的angular2/alt_router.Router类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论