缓存清理重定向到启动器组件后

时间:2018-06-01 10:11:32

标签: angular angular-ui-router angular2-forms angular-routing

我正在使用Angular 5中的项目,并使用Material Component进行设计。我确实在服务器中部署了项目并将最新的代码推送到服务器中,然后清理缓存,它重定向到启动器组件并得到404错误。比我编辑' / starter'形成网址而不是其工作。 我改变了路线,但仍面临同样的问题。

启动器组件的路由

export const StarterRoutes: Routes = [{
  path: '',
  component: StarterComponent
}];

app.routing.ts

export const AppRoutes: Routes = [{
  path: '',
  component: FullComponent,
  children: [{ 
    path: '', 
    redirectTo: '/starter', 
    pathMatch: 'full' 
  }, {
    path: '',
    loadChildren: './material-component/material.module#MaterialComponentsModule'
  }, 
  {
    path: 'starter',
    loadChildren: './starter/starter.module#StarterModule'
  }]
}];

0 个答案:

没有答案