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


TypeScript router.Router類代碼示例

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


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

示例1: gotoDetail

 gotoDetail() {
     this._router.navigate(['BottleDetail', { id: this.selectedBottle.id }]);
 }
開發者ID:abhustoft,項目名稱:BigFuzz,代碼行數:3,代碼來源:bottles.component.ts

示例2: onCancel

 private onCancel() {
     this.router.navigate(['Root']);
     return;
 }
開發者ID:derekscode,項目名稱:Idea-Management-Angular2-App,代碼行數:4,代碼來源:idea-create.component.ts

示例3:

 .then((_) => router.navigateByUrl('/abc'))
開發者ID:NathanWalker,項目名稱:angulartics2,代碼行數:1,代碼來源:angulartics2-kissmetrics.spec.ts

示例4: redirect

 redirect(event) {
   event.preventDefault();
   if (!this.isLoggedIn()) {
     this.router.navigate('/');
   }
 }
開發者ID:thomasschulze,項目名稱:fooddiary-angular2,代碼行數:6,代碼來源:app.ts

示例5: onLogout

	public onLogout(){
		this._gVS.setLoggedIn(false);
		this._gVS.setStudentId(0);
		this._router.navigate(['Login'])
	}
開發者ID:StajicVladimir,項目名稱:nova,代碼行數:5,代碼來源:app.component.ts

示例6: chartOfAccounts

 chartOfAccounts() {
     this._router.navigate(['ChartOfAccounts']);
 }
開發者ID:nigel-dewar,項目名稱:Accountico-UI,代碼行數:3,代碼來源:dashboard.ts

示例7:

	gotoLogin() {
		this._router.navigate(['Dashboard']);
	}
開發者ID:lewgun,項目名稱:classroom,代碼行數:3,代碼來源:dashboard-detail.component.ts

示例8:

 .subscribe(() => {
   this.router.navigate(['/Home']);
 }, this.handleError)
開發者ID:windwang,項目名稱:angular2-app,代碼行數:3,代碼來源:LoginPage.ts

示例9: close

 close() {
     this.router.navigate(['/PigeonList']);
 }
開發者ID:s-soltys,項目名稱:RacingPigeons,代碼行數:3,代碼來源:pigeon-add.component.ts

示例10: goToDetail

 goToDetail(login: string) {
     let link = ['UserDetails', { login: login }]
     this._router.navigate(link);
 }
開發者ID:karthikchintala64,項目名稱:Angular2SharePointApp,代碼行數:4,代碼來源:users.ts


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