今回は、Angular で Router (ルーティング) アプリケーションを使用する方法と、Angular で Router (ルーティング) アプリケーションを使用する際の 注意事項 を説明します。以下は実際のケースです。
はじめに:
Angular APPビュー間のジャンプはRouterに依存します 実行結果は以下の通りです。 ホーム、バージョン情報、ダッシュボードの 3 つのナビゲーション バーが設定されています。 別のナビゲーション バーをクリックして、対応するページに移動します: 3 つのコンポーネントを作成しますと構成
(1) **Angular Router の導入 **Angular Router を使用する場合は、次のように RouterModule を導入する必要があります:
// app.module.ts import { RouterModule } from '@angular/router'; imports: [ BrowserModule, RouterModule ],
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';
Router Configure ファイルを作成する
アプリディレクトリに、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 } ];
JavaScript の代わりに TypeScript を使用してコードを作成するため、ファイルのサフィックスは次のようになります: js ではなく ts
この routerConfigue ファイルの呼び出し方法? app.moudle.ts は Angular アプリ全体への入り口であるため、app.module.ts にロードする必要があります。// app.module.ts import { appRoutes } from './routerConfig'; imports: [ BrowserModule, RouterModule.forRoot(appRoutes) ],
ルーターアウトレットの宣言
app.component.html ファイルに次のコードを追加します:<p style="text-align:center"> <h1> {{title}}!! </h1> <nav> <a routerLink="home" routerLinkActive="active">Home</a> <a routerLink="about">About</a> <a routerLink="dashboard">Dashboard</a> </nav> <router-outlet></router-outlet> </p>
Run
プロジェクトが配置されているパスを入力して実行しますng serve --open
ルーターについて、別の書き方:
app.moudle.ts ファイルのコードは次のとおりです:imports: [ BrowserModule, RouterModule.forRoot( [ { path: 'home', component: HomeComponent }, { path: 'about', component: AboutComponent }, { path: 'dashboard', component: DashboardComponent } ] ) ],
概要
コンポーネント指向(コンポーネント)の導入により、AngularJS(1.X)よりもルーティング管理が格段に便利になりました。
さらなる最適化: おそらく、http://localhost:4200 にアクセスするとき、そのパスは「/」である必要があり、このデフォルトのパスを設定する必要があることに気づいたと思います。{ path: '', redirectTo:'/home', pathMatch: 'full' },
以上がAngular で Router アプリケーションを使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。