5

如果我的 Angular 应用程序,如果我导航(通过明确输入 URL 或单击页面链接)到http://localhost:4200/#/sign-in页面加载正常并显示我的登录表单。如果我随后Refresh在浏览器中单击,我将返回到根页面http://localhost:4200/#/

我的路由器很简单:

export const routes: Route[] = [
  { path: 'sign-up', component: SignUpComponent},
  { path: 'sign-in', component: SignInComponent},
  { path: 'admin', loadChildren: 'app/admin/admin.module#AdminModule'},
  { path: 'dashboard', loadChildren: 'app/user/user.module#UserModule', canActivate: [ UserLoggedInGuard ]},
  { path: '', pathMatch: 'full', component: HomeComponent},
  { path: '**', pathMatch: 'full', component: PageNotFoundComponent},
]

我在用

  • 视窗 8
  • 铬 62
  • @angular/core": "^4.2.4
  • @angular/router": "^4.2.4

任何想法为什么会发生这种情况?

4

1 回答 1

4

问题最终是我在我的一些代码app.component.ts中检查用户是否已登录,如果没有,则导航到主页。

于 2017-11-17T02:43:28.573 回答