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


TypeScript router.Router類代碼示例

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


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

示例1: canActivate

    canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot) {
        if(this.authService.getCookie('token')){
            this.router.navigate(['/'])
        }
	    return true
    }
開發者ID:jackhutu,項目名稱:jackblog-angular2,代碼行數:6,代碼來源:login.guards.ts

示例2: train

 train(intent) {
   this._router.navigate(["/agent/default/train-intent", intent._id.$oid])
 }
開發者ID:Truth0906,項目名稱:ai-chatbot-framework,代碼行數:3,代碼來源:intents.component.ts

示例3: requestResetPassword

 requestResetPassword() {
     this.activeModal.dismiss('to state requestReset');
     this.router.navigate(['/reset', 'request']);
 }
開發者ID:gjik911,項目名稱:git_01,代碼行數:4,代碼來源:login.component.ts

示例4: home

 home() {
   this.router.navigate(['']);
 }
開發者ID:uqutub,項目名稱:server-client-boilerplate,代碼行數:3,代碼來源:app.ts

示例5: products

 products(){
   this.router.navigate(['products']);
 }
開發者ID:uqutub,項目名稱:server-client-boilerplate,代碼行數:3,代碼來源:app.ts

示例6: tap

 tap(action => {
   this.router.navigate(['']);
   this.localStorageService.setItem(AUTH_KEY, { isAuthenticated: false });
 })
開發者ID:gojay,項目名稱:angular-ngrx-material-starter,代碼行數:4,代碼來源:auth.effects.ts

示例7:

 ).subscribe(() => this.router.navigate([ '..' ], { relativeTo: this.route }));
開發者ID:our-city-app,項目名稱:plugin-mobicage-control-center,代碼行數:1,代碼來源:update-embedded-app-page.component.ts

示例8: checkcredentials

 checkcredentials(){
             if(localStorage.getItem("user") === null){
                 this._router.navigate(['login']);
             }
 }
開發者ID:SuperHeros5,項目名稱:Busroutes,代碼行數:5,代碼來源:authentication.service.ts

示例9: logout

 logout(){
     localStorage.removeItem("user");
     this._router.navigate(['login']);
 }
開發者ID:SuperHeros5,項目名稱:Busroutes,代碼行數:4,代碼來源:authentication.service.ts

示例10: clicked

 clicked(product: Product): void {
   this.currentProduct = product;
   this.onProductSelected.emit(product);
   this.router.navigate(['/product', product.sku]);
 }
開發者ID:mihail-davitkovski,項目名稱:angular2-typescript-webpack,代碼行數:5,代碼來源:products-list.component.ts


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