导航到/ home或new时看不到html页面。仅显示索引

时间:2019-09-21 00:45:01

标签: javascript angular

在这个项目中,我尝试学习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 }
];

1 个答案:

答案 0 :(得分:0)

只需将您的代码更新为

[{
    path: '',
    pathMatch: 'full',
    redirectTo: 'home' // you dont need /home
  },
  {
    path: 'home',
    component: IndexComponent
  }
]