私のルーティングで角度4でヘルプが必要です。このようなURLを表示したいと思います。 Localhost:4200/user/1、最初のユーザーの表示詳細をクリックした場合。私は少しこれをする方法について混乱しています。私は下のコードでベストを尽くしましたが、それでも動作しません。IDが4の角度でルーティングする
アプリ-routing.module.ts
const appRoutes: Routes = [
{ path: '', redirectTo: '/dashboard', pathMatch: 'full' },
{ path: 'dashboard', component: DashboardComponent },
{ path: 'user', component: UserComponent, children: [
{ path: 'create-new-user', component: CreateNewUserComponent },
{ path: 'user-list', component: UserListComponent },
{ path: 'user-detail/:id', component: UserDetailComponent },
]},
];
@NgModule({
imports: [RouterModule.forRoot(appRoutes)],
exports: [RouterModule]
})
export class AppRoutingModule {
}
あなたが動作しないとはどういう意味ですかではその
好きですか? – Daniel
私はこのURLに行くことができないことを意味するLocalhost:4200/user/1。あなたが私を助けてくれることを願います。 – Joseph