中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

angular9中路由守衛的使用方法

發布時間:2021-03-18 12:56:12 來源:億速云 閱讀:246 作者:小新 欄目:web開發

小編給大家分享一下angular9中路由守衛的使用方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

路由守衛是什么

任何用戶都能在任何時候導航到任何地方。但有時候出于種種原因需要控制對該應用的不同部分的訪問。可能包括如下場景:

該用戶可能無權導航到目標組件。

可能用戶得先登錄(認證)。

在顯示目標組件前,你可能得先獲取某些數據。

在離開組件前,你可能要先保存修改。

你可能要詢問用戶:你是否要放棄本次更改,而不用保存它們?

相關推薦:《angular教程》

組件的創建

1、home組件創建
2、login組件創建
3、home下的first和second子組件

angular9中路由守衛的使用方法

守衛路由相關核心代碼

routing中每個路由都是對所有人開放的。這些新的管理特性應該只能被已登錄用戶訪問。

編寫一個 CanActivate() 守衛,將正在嘗試訪問管理組件匿名用戶重定向到登錄頁。

1.1 在auth 文件夾下,新建一個auth.service.ts文件,模擬有關登錄的請求服務,實際場景一般是將后臺token保存在cookie中.

import { Injectable } from '@angular/core';

import { Observable, of } from 'rxjs';
import { tap, delay } from 'rxjs/operators';

@Injectable({
  providedIn: 'root',
})
export class AuthService {
  isLoggedIn = false; //默認未登錄

  // 記錄登錄之后,需要跳轉到原來請求的地址
  redirectUrl: string;
// 登錄
  login(): Observable<boolean> {
    return of(true).pipe(
      delay(1000),
      tap(val => this.isLoggedIn = true)
    );
  }
// 登出
  logout(): void {
    this.isLoggedIn = false;
  }
}

1.2 在 auth 文件夾下,新建一個auth.guard.ts文件

import { Injectable } from '@angular/core';
import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, Router } from '@angular/router';

import { AuthService } from './auth.service'; 
@Injectable({
  providedIn: 'root',
})
export class AuthGuard implements CanActivate {
  constructor(private authService: AuthService, private router: Router) {}
  canActivate(
    next: ActivatedRouteSnapshot,
    state: RouterStateSnapshot): boolean {
    let url: string = state.url
    return this.checkLogin(url);
  }
  
  checkLogin(url: string): boolean {
    if (this.authService.isLoggedIn) { return true; }

    // 保存原始的請求地址,登錄后跳轉到該地址
    this.authService.redirectUrl = url;

    // 未登錄,跳轉到登錄頁面
    this.router.navigate(['/login']);
    return false;
  }
}

在路由中使用守衛

在app-routing.module.ts文件下使用

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { AuthGuard } from './auth/auth.guard';
import { LoginComponent } from './login/login.component';

const routes: Routes = [
  {
    path: '',
    redirectTo: '/home',
    pathMatch: 'full'
  },
 
  {
    path: 'login',
    component: LoginComponent
  },
  {
    path: 'home',
    loadChildren: () => import('./home/home.module')
      .then(mod => mod.HomeModule),
    canActivate: [AuthGuard], // 守衛路由
  }
];

@NgModule({
  imports: [RouterModule.forRoot(routes)],
  exports: [RouterModule]
})
export class AppRoutingModule {}

以上是“angular9中路由守衛的使用方法”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

巩留县| 永和县| 东丽区| 东台市| 红安县| 合肥市| 毕节市| 邓州市| 长白| 安丘市| 上饶县| 察哈| 连城县| 清镇市| 广平县| 赤壁市| 海南省| 自治县| 长武县| 泸西县| 谢通门县| 汽车| 泾源县| 北碚区| 红安县| 砀山县| 德惠市| 油尖旺区| 金平| 潮州市| 蚌埠市| 新乐市| 思茅市| 鲁山县| 专栏| 苍溪县| 泗阳县| 台南县| 雷山县| 屯留县| 新田县|