当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Router.navigateByUrl方法代码示例

本文整理汇总了TypeScript中angular2/alt_router.Router.navigateByUrl方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Router.navigateByUrl方法的具体用法?TypeScript Router.navigateByUrl怎么用?TypeScript Router.navigateByUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在angular2/alt_router.Router的用法示例。


在下文中一共展示了Router.navigateByUrl方法的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.navigateByUrl方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。