真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Angular5.x之Router怎么用

這篇文章主要介紹了Angular 5.x之Router怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

10年積累的成都網(wǎng)站設(shè)計、做網(wǎng)站經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先網(wǎng)站設(shè)計后付款的網(wǎng)站建設(shè)流程,更有新晃免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。

實例講解

運行結(jié)果如下。 設(shè)置了3個導(dǎo)航欄, Home、 About、Dashboard。 點擊不同的導(dǎo)航欄,跳轉(zhuǎn)到相應(yīng)的頁面:

Angular 5.x之Router怎么用

創(chuàng)建3個 component

  1. ng g c home

  2. ng g c about

  3. 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 中,這是因為 app.moudle.ts 是整個Angular App 的入口。

// app.module.ts
import { appRoutes } from './routerConfig';
imports: [
 BrowserModule,
 RouterModule.forRoot(appRoutes)
],

聲明 Router Outlet

在 app.component.html 文件中,添加代碼:


 

  {{title}}!!  

     

運行

進(jì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
   }
  ]
  )
 ],

這樣一來,可以不用單獨創(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),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!


分享題目:Angular5.x之Router怎么用
分享鏈接:http://weahome.cn/article/jcphgd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部