共用方式為


教學課程:在 Angular 單頁應用程式中新增登入和註銷

本教學課程是一系列的第 3 部分,示範如何建置 Angular 單頁應用程式 (SPA),該應用程式會使用 Microsoft 身分識別平台 進行驗證。 在本教學課程中,您會將登入和註銷體驗新增至 Angular SPA。

在本教學課程中:

  • 將登入和登出功能新增至您的應用程式。

必要條件

將登入和註銷功能新增至您的應用程式

若要在 Angular 應用程式中啟用登入和註銷功能,請遵循下列步驟:

  1. 開啟 檔案, src/app/app.component.html 並以下列程式代碼取代內容。

    <a class="navbar navbar-dark bg-primary" variant="dark" href="/">
        <a class="navbar-brand"> Microsoft Identity Platform </a>
        <a>
            <button *ngIf="!loginDisplay" class="btn btn-secondary" (click)="login()">Sign In</button>
            <button *ngIf="loginDisplay" class="btn btn-secondary" (click)="logout()">Sign Out</button>
        </a>
    </a>
    <a class="profileButton">
        <a [routerLink]="['profile']" class="btn btn-secondary" *ngIf="loginDisplay">View Profile</a> 
    </a>
    <div class="container">
        <router-outlet></router-outlet>
    </div>
    

    程序代碼會在 Angular 應用程式中實作導覽列。 它會根據使用者驗證狀態動態顯示 [登入 ] 和 [註銷 ] 按鈕,並包含 登入使用者的 [檢視配置檔 ] 按鈕,以增強應用程式的使用者介面。 login()當選取按鈕時,會呼叫 中的 src/app/app.component.tslogout() 方法。

  2. 開啟 檔案, src/app/app-routing.module.ts 並以下列程式代碼取代內容。

    // Required for Angular
    import { NgModule } from '@angular/core';
    
    // Required for the Angular routing service
    import { Routes, RouterModule } from '@angular/router';
    
    // Required for the "Profile" page
    import { ProfileComponent } from './profile/profile.component';
    
    // Required for the "Home" page
    import { HomeComponent } from './home/home.component';
    
    // MsalGuard is required to protect routes and require authentication before accessing protected routes
    import { MsalGuard } from '@azure/msal-angular';
    
    // Define the possible routes
    // Specify MsalGuard on routes to be protected
    // '**' denotes a wild card
    const routes: Routes = [
      {
        path: 'profile',
        component: ProfileComponent,
        canActivate: [
          MsalGuard
        ]
      },
      {
        path: '**',
        component: HomeComponent
      }
    ];
    
    // Create an NgModule that contains all the directives for the routes specified above
    @NgModule({
      imports: [RouterModule.forRoot(routes, {
        useHash: true
      })],
      exports: [RouterModule]
    })
    export class AppRoutingModule { }
    

    代碼段會藉由建立 ProfileHome 元件的路徑,在 Angular 應用程式中設定路由。 它會使用 MsalGuard 在配置檔路由上強制執行驗證,而所有不相符的路徑都會重新導向至 Home 元件。

  3. 開啟 檔案, src/app/home/home.component.ts 並以下列程式代碼取代內容。

    // Required for Angular
    import { Component, OnInit } from '@angular/core';
    
    // Required for MSAL
    import { MsalBroadcastService, MsalService } from '@azure/msal-angular';
    
    // Required for Angular multi-browser support
    import { EventMessage, EventType, AuthenticationResult } from '@azure/msal-browser';
    
    // Required for RJXS observables
    import { filter } from 'rxjs/operators';
    
    @Component({
      selector: 'app-home',
      templateUrl: './home.component.html'
    })
    export class HomeComponent implements OnInit {
      constructor(
        private authService: MsalService,
        private msalBroadcastService: MsalBroadcastService
      ) { }
    
      // Subscribe to the msalSubject$ observable on the msalBroadcastService
      // This allows the app to consume emitted events from MSAL
      ngOnInit(): void {
        this.msalBroadcastService.msalSubject$
          .pipe(
            filter((msg: EventMessage) => msg.eventType === EventType.LOGIN_SUCCESS),
          )
          .subscribe((result: EventMessage) => {
            const payload = result.payload as AuthenticationResult;
            this.authService.instance.setActiveAccount(payload.account);
          });
      }
    }
    

    程式代碼會設定名為 HomeComponent 的 Angular 元件,該元件會與 Microsoft 驗證連結庫 (MSAL) 整合。 在ngOnInit生命周期攔截中,元件會從訂閱可MsalBroadcastService觀察的 msalSubject$ ,篩選登入成功事件。 當登入事件發生時,它會擷取驗證結果,並在 中設定使用中的 MsalService帳戶,讓應用程式能夠管理用戶會話。

  4. 開啟 檔案, src/app/home/home.component.html 並以下列程式代碼取代內容。

    <div class="title">
        <h5>
            Welcome to the Microsoft Authentication Library For Javascript - Angular SPA
        </h5>
        <p >View your data from Microsoft Graph by clicking the "View Profile" link above.</p>
    </div>
    

    此程式代碼會歡迎使用者前往應用程式,並提示他們按兩下 [檢視配置檔 ] 連結來檢視其Microsoft圖形數據。

  5. 開啟 檔案, src/main.ts 並以下列程式代碼取代內容。

    import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
    
    import { AppModule } from './app/app.module';
    
    platformBrowserDynamic().bootstrapModule(AppModule)
      .catch(err => console.error(err));
    

    代碼段會 platformBrowserDynamic 從 Angular 的平台瀏覽器動態模組和 AppModule 應用程式的模組檔案匯入。 然後,它會使用 platformBrowserDynamic() 來啟動 AppModule,初始化 Angular 應用程式。 啟動程式程式期間發生的任何錯誤都會攔截並記錄到主控台。

  6. 開啟 檔案, src/index.html 並以下列程式代碼取代內容。

    <!doctype html>
    <html lang="en">
      <head>
        <meta charset="utf-8">
        <title>MSAL For Javascript - Angular SPA</title>
      </head>
      <body>
        <app-root></app-root>
        <app-redirect></app-redirect>
      </body>
    </html>
    

    代碼段會定義具有英文的 HTML5 檔做為語言和 UTF-8 字元編碼。 它會將標題設定為 「MSAL For Javascript - Angular SPA」。。本文包含 <app-root> 元件作為主要進入點,以及 <app-redirect> 重新導向功能的元件。

  7. 開啟 檔案, src/styles.css 並以下列程式代碼取代內容。

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    code {
      font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
        monospace;
    }
    
    .app {
      text-align: center;
      padding: 8px;
    }
    
    .title{
      text-align: center;
      padding: 18px;
    }
    
    
    .profile{
      text-align: center;
      padding: 18px;
    }
    
    .profileButton{
      display: flex;
      justify-content: center;
      padding: 18px;
    }
    

    CSS 程式代碼會將本文字型設定為新式 sans-serif 堆棧、移除默認邊界,以及套用字型平滑,以增強可讀性來設定網頁樣式。 它會將文字置中 .app,並將邊框間距新增至、 .title.profile 類別,而 類別 .profileButton 則使用 flexbox 將元素置中。

下一步