我在Angular 4中路由時需要幫助。我想要顯示這樣的URL。本地主機:4200 /用戶/ 1如果我點擊第一個用戶的查看詳細信息。我對如何解決這個問題有點困惑。我在下面的代碼中盡力而爲,但它仍然不起作用。在Angular 4中使用ID路由
APP-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本地主機:4200 /用戶/ 1。希望您能夠幫助我。 – Joseph