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


TypeScript Router.navigate方法代碼示例

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


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

示例1: startDeposit

	startDeposit(): void {
		this.router.navigate(['/account/' + this.account._id + '/deposit']);
	}
開發者ID:SamGraber,項目名稱:BankGame,代碼行數:3,代碼來源:accountDetail.component.ts

示例2: goToDropDown

 public goToDropDown() {
     this._router.navigate(["/dd"]);
 }
開發者ID:PeterStaev,項目名稱:ng-test-bed,代碼行數:3,代碼來源:home.component.ts

示例3: _postSignIn

 private _postSignIn(): void {
   this._router.navigate(['']);
 }
開發者ID:uhurufurniture-oak,項目名稱:ufc-client,代碼行數:3,代碼來源:login.component.ts

示例4:

      }, () => {
         this.router.navigate(['social-register'], {queryParams: {'success': 'false'}});
 });
開發者ID:baskeboler,項目名稱:generator-jhipster,代碼行數:3,代碼來源:_social-auth.component.ts

示例5: navigateTo

 navigateTo(routerKey: string) {
   this.router.navigate([routerKey]);
 }
開發者ID:bryant-pham,項目名稱:brograder,代碼行數:3,代碼來源:home.component.ts

示例6: ngOnInit

 ngOnInit() {
     this.auth.logout();
     this.router.navigate(['/']);
 }
開發者ID:garage-it,項目名稱:SmartHouse-frontend,代碼行數:4,代碼來源:logout.component.ts

示例7: 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.
   this.router.navigate(['/heroes'], { queryParams: { id: heroId, foo: 'foo' } });
 }
開發者ID:dhiraj1mumbai,項目名稱:routing,代碼行數:6,代碼來源:hero-detail.component.ts

示例8: onClick

 onClick () {
   this.router.navigate(['/component-two', 456]);
 }
開發者ID:ShivKamal,項目名稱:ngCourse2,代碼行數:3,代碼來源:app.component.ts

示例9: goAcademyHome

	goAcademyHome()
	{
		console.log("### Going to Academy Home...");
		this.router.navigate(['/academyHome', {}]);
	}
開發者ID:benny568,項目名稱:clubWebsite,代碼行數:5,代碼來源:academyMenu.component.ts

示例10: onCancel

 onCancel() {
   this.router.navigate(['../', 'view'], { relativeTo: this.route });
 }
開發者ID:formio,項目名稱:ng2-formio,代碼行數:3,代碼來源:delete.component.ts


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