當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript router-deprecated.Router類代碼示例

本文整理匯總了TypeScript中@angular/router-deprecated.Router的典型用法代碼示例。如果您正苦於以下問題:TypeScript Router類的具體用法?TypeScript Router怎麽用?TypeScript Router使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Router類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: back

 back() {
   this._router.navigate(['Show', { id: this._routeParams.get('id') }])
 }
開發者ID:emesonsantana,項目名稱:bmp1-web-service,代碼行數:3,代碼來源:delete.component.ts

示例2: isCurrentRoute

 isCurrentRoute(route){
      var instruction = this.router.generate(route);
      return this.router.isRouteActive(instruction);
  }
開發者ID:kaanlab,項目名稱:freerad-web-client,代碼行數:4,代碼來源:app.component.ts

示例3: Route

 .then((_) => rtr.config([new Route({path: '/...', component: LifecycleCmp})]))
開發者ID:4vanger,項目名稱:angular,代碼行數:1,代碼來源:lifecycle_hook_spec.ts

示例4: onSelectFactory

 onSelectFactory(factory: Factory) {
    console.log('Selected factory code: ' + factory.code + ', factory name: ' + factory.name);
    this._router.navigate(['FactorySummary',  { code: factory.code } ]);
 }
開發者ID:railsstudent,項目名稱:angular2-appcheck,代碼行數:4,代碼來源:factory-list.component.ts

示例5: gotoServicesGroupDetail

 gotoServicesGroupDetail(servicesGroup: ServicesGroup){
     let link = ['ServicesGroupDetailsPage', { url: servicesGroup.url }];
     this._router.navigate(link);
 }
開發者ID:akdum,項目名稱:Clinic,代碼行數:4,代碼來源:services.page.component.ts

示例6: gotoCatalog

 gotoCatalog(board: Board) {
 let link = ['Threads', { board_id: board.board_id }];
 this.router.navigate(link);
 }
開發者ID:Dnash1,項目名稱:medium,代碼行數:4,代碼來源:boards.component.ts

示例7: signup

 signup(event) {
   event.preventDefault();
   this.router.navigateByUrl('/signup');
 }
開發者ID:oreon,項目名稱:mya2,代碼行數:4,代碼來源:login.ts

示例8: gotoDetail

 gotoDetail(hero: Hero){
     let link = ['HeroDetail',{id: hero.id}];
     this.router.navigate(link);
 }
開發者ID:vlsidlyarevich,項目名稱:Angular2-Hero,代碼行數:4,代碼來源:dashboard.component.ts

示例9: volver

 private volver() {
   event.preventDefault();
 //  this.router.parent.navigateByUrl('/login');
   this.router.navigate(['Login']);
 }
開發者ID:gustavobrian,項目名稱:desa,代碼行數:5,代碼來源:recupera.ts

示例10: submit

 submit(query: string): void {
   this.router.navigate(['/Search', {query: query}]);
   this.search();
 }
開發者ID:GerbenRampaart,項目名稱:ngbook2,代碼行數:4,代碼來源:SearchComponent.ts


注:本文中的@angular/router-deprecated.Router類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。