在这个项目中,我尝试学习Angular和嵌套组件。由于某些原因,我无法导航至/ home页面。该页面未显示。请帮忙。谢谢。
app-routing.module.ts
const routes: Routes = [
{ path: '', pathMatch: 'full', redirectTo: '/home' },
{ path: 'home', component: IndexComponent },
{ path: 'view/:id', component: ShowComponent },
{ path: 'new', component: NewComponent },
{ path: 'edit/:id', component: EditComponent },
{ path: '**', component: IndexComponent }
];
答案 0 :(得分:0)
只需将您的代码更新为
[{
path: '',
pathMatch: 'full',
redirectTo: 'home' // you dont need /home
},
{
path: 'home',
component: IndexComponent
}
]