です。angular2の経路については質問があります。今日私はangular2公式チュートリアルと同じ例を使用しています。 コードは次のようなもの(file link)です:angular2で経路を編成する最良の方法は
// app.routing.ts
import { ModuleWithProviders } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { DashboardComponent } from './dashboard.component';
import { HeroesComponent } from './heroes.component';
import { HeroDetailComponent } from './hero-detail.component';
const appRoutes: Routes = [
{
path: '',
redirectTo: '/dashboard',
pathMatch: 'full'
},
{
path: 'dashboard',
component: DashboardComponent
},
{
path: 'detail/:id',
component: HeroDetailComponent
},
{
path: 'heroes',
component: HeroesComponent
}
];
export const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes);
私の質問です。複数の塊がある場合は、たくさんのコンポーネント(エンティティ/リスト、エンティティ/追加、エンティティ/編集、エンティティ/ショーなど)を取得します。
これをどのように解決できますか?厄介なコンポーネントを作成せずにルートを整理する最善の方法は何ですか?
これはまさに私が探していたものです! 私はこのような構造を見て、それはこの部分を解決します: https://angular.io/docs/ts/latest/guide/router.html#the-heroes-app-code どうもありがとう! –