這篇文章主要講解了“angular路由模塊怎么用”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“angular路由模塊怎么用”吧!
創(chuàng)新互聯(lián)公司從2013年創(chuàng)立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目成都網(wǎng)站建設(shè)、成都網(wǎng)站制作網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元新洲做網(wǎng)站,已為上家服務(wù),為新洲各地企業(yè)和個人服務(wù),聯(lián)系電話:18982081108
在 Angular 中,路由是以模塊為單位
的,每個模塊都可以有自己的路由。
1、創(chuàng)建頁面組件、Layout 組件以及 Navigation 組件,供路由使用
創(chuàng)建首頁頁面組件ng g c pages/home
創(chuàng)建關(guān)于我們頁面組件ng g c pages/about
創(chuàng)建布局組件ng g c pages/layout
創(chuàng)建導(dǎo)航組件ng g c pages/navigation
2、創(chuàng)建路由規(guī)則
// app.module.ts import { Routes } from "@angular/router" const routes: Routes = [ { path: "home", component: HomeComponent }, { path: "about", component: AboutComponent } ]
3、引入路由模塊并啟動
// app.module.ts import { RouterModule, Routes } from "@angular/router" @NgModule({ imports: [RouterModule.forRoot(routes, { useHash: true })], }) export class AppModule {}
4、添加路由插座
<!-- 路由插座即占位組件 匹配到的路由組件將會顯示在這個地方 --> <router-outlet></router-outlet>
5、在導(dǎo)航組件中定義鏈接
<a routerLink="/home">首頁</a> <a routerLink="/about">關(guān)于我們</a>
1、重定向
const routes: Routes = [ { path: "home", component: HomeComponent }, { path: "about", component: AboutComponent }, { path: "", // 重定向 redirectTo: "home", // 完全匹配 pathMatch: "full" } ]
2、404 頁面
const routes: Routes = [ { path: "home", component: HomeComponent }, { path: "about", component: AboutComponent }, { path: "**", component: NotFoundComponent } ]
1、查詢參數(shù)
<a routerLink="/about" [queryParams]="{ name: 'kitty' }">關(guān)于我們</a>
import { ActivatedRoute } from "@angular/router" export class AboutComponent implements OnInit { constructor(private route: ActivatedRoute) {} ngOnInit(): void { this.route.queryParamMap.subscribe(query => { query.get("name") }) } }
2、動態(tài)參數(shù)
const routes: Routes = [ { path: "home", component: HomeComponent }, { path: "about/:name", component: AboutComponent } ]
<a [routerLink]="['/about', 'zhangsan']">關(guān)于我們</a>
import { ActivatedRoute } from "@angular/router" export class AboutComponent implements OnInit { constructor(private route: ActivatedRoute) {} ngOnInit(): void { this.route.paramMap.subscribe(params => { params.get("name") }) } }
路由嵌套指的是如何定義子級路由
。
const routes: Routes = [ { path: "about", component: AboutComponent, children: [ { path: "introduce", component: IntroduceComponent }, { path: "history", component: HistoryComponent } ] } ]
<!-- about.component.html --> <app-layout> <p>about works!</p> <a routerLink="/about/introduce">公司簡介</a> <a routerLink="/about/history">發(fā)展歷史</a> <div> <router-outlet></router-outlet> </div> </app-layout>
命名插座
將子級路由組件顯示到不同的路由插座中。
{ path: "about", component: AboutComponent, children: [ { path: "introduce", component: IntroduceComponent, outlet: "left" }, { path: "history", component: HistoryComponent, outlet: "right" } ] }
<!-- about.component.html --> <app-layout> <p>about works!</p> <router-outlet name="left"></router-outlet> <router-outlet name="right"></router-outlet> </app-layout>
<a [routerLink]="[ '/about', { outlets: { left: ['introduce'], right: ['history'] } } ]" >關(guān)于我們 </a>
<!-- app.component.html --> <button (click)="jump()">跳轉(zhuǎn)到發(fā)展歷史</button>
// app.component.ts import { Router } from "@angular/router" export class HomeComponent { constructor(private router: Router) {} jump() { this.router.navigate(["/about/history"], { queryParams: { name: "Kitty" } }) } }
將根模塊中的路由配置抽象成一個單獨的路由模塊,稱之為根路由模塊
,然后在根模塊中引入根路由模塊。
import { NgModule } from "@angular/core" import { HomeComponent } from "./pages/home/home.component" import { NotFoundComponent } from "./pages/not-found/not-found.component" const routes: Routes = [ { path: "", component: HomeComponent }, { path: "**", component: NotFoundComponent } ] @NgModule({ declarations: [], imports: [RouterModule.forRoot(routes, { useHash: true })], // 導(dǎo)出 Angular 路由功能模塊,因為在根模塊的根組件中使用了 RouterModule 模塊中提供的路由插座組件 exports: [RouterModule] }) export class AppRoutingModule {}
import { BrowserModule } from "@angular/platform-browser" import { NgModule } from "@angular/core" import { AppComponent } from "./app.component" import { AppRoutingModule } from "./app-routing.module" import { HomeComponent } from "./pages/home/home.component" import { NotFoundComponent } from "./pages/not-found/not-found.component" @NgModule({ declarations: [AppComponent,HomeComponent, NotFoundComponent], imports: [BrowserModule, AppRoutingModule], providers: [], bootstrap: [AppComponent] }) export class AppModule {}
路由懶加載是以模塊
為單位的。
1、創(chuàng)建用戶模塊 ng g m user --routing=true
一并創(chuàng)建該模塊的路由模塊
2、創(chuàng)建登錄頁面組件 ng g c user/pages/login
3、創(chuàng)建注冊頁面組件 ng g c user/pages/register
4、配置用戶模塊的路由規(guī)則
import { NgModule } from "@angular/core" import { Routes, RouterModule } from "@angular/router" import { LoginComponent } from "./pages/login/login.component" import { RegisterComponent } from "./pages/register/register.component" const routes: Routes = [ { path: "login", component: LoginComponent }, { path: "register", component: RegisterComponent } ] @NgModule({ imports: [RouterModule.forChild(routes)], exports: [RouterModule] }) export class UserRoutingModule {}
5、將用戶路由模塊關(guān)聯(lián)到主路由模塊
// app-routing.module.ts const routes: Routes = [ { path: "user", loadChildren: () => import("./user/user.module").then(m => m.UserModule) } ]
6、在導(dǎo)航組件中添加訪問鏈接
<a routerLink="/user/login">登錄</a> <a routerLink="/user/register">注冊</a>
路由守衛(wèi)會告訴路由是否允許導(dǎo)航到請求的路由。
路由守方法可以返回 boolean
或 Observable <boolean>
或 Promise <boolean>
,它們在將來的某個時間點解析為布爾值。
1、CanActivate
檢查用戶是否可以訪問某一個路由
。
CanActivate 為接口
,路由守衛(wèi)類要實現(xiàn)該接口,該接口規(guī)定類中需要有 canActivate 方法,方法決定是否允許訪問目標(biāo)路由。
路由可以應(yīng)用多個守衛(wèi)
,所有守衛(wèi)方法都允許,路由才被允許訪問,有一個守衛(wèi)方法不允許,則路由不允許被訪問。
創(chuàng)建路由守衛(wèi):ng g guard guards/auth
import { Injectable } from "@angular/core" import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, Router } from "@angular/router" import { Observable } from "rxjs" @Injectable({ providedIn: "root" }) export class AuthGuard implements CanActivate { constructor(private router: Router) {} canActivate(): boolean | UrlTree { // 用于實現(xiàn)跳轉(zhuǎn) return this.router.createUrlTree(["/user/login"]) // 禁止訪問目標(biāo)路由 return false // 允許訪問目標(biāo)路由 return true } }
{ path: "about", component: AboutComponent, canActivate: [AuthGuard] }
2、CanActivateChild
檢查用戶是否方可訪問某個子路由。
創(chuàng)建路由守衛(wèi):ng g guard guards/admin
注意:選擇 CanActivateChild,需要將箭頭移動到這個選項并且敲擊空格確認(rèn)選擇。
import { Injectable } from "@angular/core" import { CanActivateChild, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree } from "@angular/router" import { Observable } from "rxjs" @Injectable({ providedIn: "root" }) export class AdminGuard implements CanActivateChild { canActivateChild(): boolean | UrlTree { return true } }
{ path: "about", component: AboutComponent, canActivateChild: [AdminGuard], children: [ { path: "introduce", component: IntroduceComponent } ] }
3、CanDeactivate
檢查用戶是否可以退出路由。
比如用戶在表單中輸入的內(nèi)容沒有保存,用戶又要離開路由,此時可以調(diào)用該守衛(wèi)提示用戶。
import { Injectable } from "@angular/core" import { CanDeactivate, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree } from "@angular/router" import { Observable } from "rxjs" export interface CanComponentLeave { canLeave: () => boolean } @Injectable({ providedIn: "root" }) export class UnsaveGuard implements CanDeactivate<CanComponentLeave> { canDeactivate(component: CanComponentLeave): boolean { if (component.canLeave()) { return true } return false } }
{ path: "", component: HomeComponent, canDeactivate: [UnsaveGuard] }
import { CanComponentLeave } from "src/app/guards/unsave.guard" export class HomeComponent implements CanComponentLeave { myForm: FormGroup = new FormGroup({ username: new FormControl() }) canLeave(): boolean { if (this.myForm.dirty) { if (window.confirm("有數(shù)據(jù)未保存, 確定要離開嗎")) { return true } else { return false } } return true }
4、Resolve
允許在進入路由之前先獲取數(shù)據(jù),待數(shù)據(jù)獲取完成之后再進入路由。
ng g resolver <name>
import { Injectable } from "@angular/core" import { Resolve } from "@angular/router" type returnType = Promise<{ name: string }> @Injectable({ providedIn: "root" }) export class ResolveGuard implements Resolve<returnType> { resolve(): returnType { return new Promise(function (resolve) { setTimeout(() => { resolve({ name: "張三" }) }, 2000) }) } }
{ path: "", component: HomeComponent, resolve: { user: ResolveGuard } }
export class HomeComponent { constructor(private route: ActivatedRoute) {} ngOnInit(): void { console.log(this.route.snapshot.data.user) } }
感謝各位的閱讀,以上就是“angular路由模塊怎么用”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對angular路由模塊怎么用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!
文章題目:angular路由模塊怎么用
標(biāo)題來源:http://jinyejixie.com/article38/poccpp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供動態(tài)網(wǎng)站、網(wǎng)站建設(shè)、商城網(wǎng)站、關(guān)鍵詞優(yōu)化、網(wǎng)站制作、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)