這篇文章主要介紹了Angular 5.x之Router怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比察雅網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式察雅網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋察雅地區(qū)。費(fèi)用合理售后完善,十多年實(shí)體公司更值得信賴。實(shí)例講解
運(yùn)行結(jié)果如下。 設(shè)置了3個導(dǎo)航欄, Home、 About、Dashboard。 點(diǎn)擊不同的導(dǎo)航欄,跳轉(zhuǎn)到相應(yīng)的頁面:
創(chuàng)建3個 component
ng g c home
ng g c about
ng g c dashboard
路由與配置
(1)**引入 Angular Router **
當(dāng)用到 Angular Router 時,需要引入 RouterModule,如下:
// app.module.ts import { RouterModule } from '@angular/router'; imports: [ BrowserModule, RouterModule ],
(2) 路由配置
還記得由誰來管理component 的吧,沒錯,由 module 來管理。 所以,把新創(chuàng)建的 component,引入到 app.moudle 中。 如下:
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import { appRoutes } from './routerConfig'; import { AppComponent } from './app.component'; import { AboutComponent } from './components/about/about.component'; import { HomeComponent } from './components/home/home.component'; import { DashboardComponent } from './components/dashboard/dashboard.component';
提示: 注意component的路徑,為便于管理,我們把新創(chuàng)建的component 移到了 components 文件夾中。
創(chuàng)建 Router Configure 文件
在 app 目錄下, 創(chuàng)建 routerConfig.ts 文件。 代碼如下:
import { Routes } from '@angular/router'; import { HomeComponent } from './components/home/home.component'; import { AboutComponent } from './components/about/about.component'; import { DashboardComponent } from './components/dashboard/dashboard.component'; export const appRoutes: Routes = [ { path: 'home', component: HomeComponent }, { path: 'about', component: AboutComponent }, { path: 'dashboard', component: DashboardComponent } ];
說明: Angular 2.X 以上版本,開始使用 TypeScript 編寫代碼,而不再是 JavaScript,所以,文件的后綴是: ts 而不是 js
這個 routerConfigue 文件,怎么調(diào)用呢? 需要把它加載到 app.module.ts 中,這是因?yàn)?app.moudle.ts 是整個Angular App 的入口。
// app.module.ts import { appRoutes } from './routerConfig'; imports: [ BrowserModule, RouterModule.forRoot(appRoutes) ],
聲明 Router Outlet
在 app.component.html 文件中,添加代碼:
<div > <h2> {{title}}!! </h2> <nav> <a routerLink="home" routerLinkActive="active">Home</a> <a routerLink="about">About</a> <a routerLink="dashboard">Dashboard</a> </nav> <router-outlet></router-outlet> </div>
運(yùn)行
進(jìn)入到該工程所在的路徑, 運(yùn)行;
ng serve --open
當(dāng) webpack 編譯成功后,在瀏覽器地址欄中,輸入: http://localhost:4200
即可看到本篇開始的結(jié)果。
關(guān)于Router,換一種寫法:
在 app.moudle.ts 文件中,代碼如下 :
imports: [ BrowserModule, RouterModule.forRoot( [ { path: 'home', component: HomeComponent }, { path: 'about', component: AboutComponent }, { path: 'dashboard', component: DashboardComponent } ] ) ],
這樣一來,可以不用單獨(dú)創(chuàng)建 routerConfigure.ts 文件。
小結(jié)
自從引入了面向組件(component)后,路由管理相比 AngularJS (1.X),方便了很多。
進(jìn)一步優(yōu)化:
或許你已經(jīng)注意到,當(dāng)訪問 http://localhost:4200 時,它的路徑應(yīng)該是 “/”, 我們應(yīng)該設(shè)置這個默認(rèn)的路徑。
{ path: '', redirectTo:'/home', pathMatch: 'full' },
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Angular 5.x之Router怎么用”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司,關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、網(wǎng)站設(shè)計(jì)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
本文名稱:Angular5.x之Router怎么用-創(chuàng)新互聯(lián)
鏈接URL:http://aaarwkj.com/article36/cocssg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、定制開發(fā)、響應(yīng)式網(wǎng)站、網(wǎng)站設(shè)計(jì)、定制網(wǎng)站、網(wǎng)站導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容