Angular 5 - 在浏览器刷新时将页面重定向到主页

时间:2017-11-11 04:11:00

标签: angular typescript angularjs-ng-route

目前,当我从

这样的路线刷新页面时
  

Example 280

它停留在同一条路线上。但我希望路线重定向到

  

http://localhost:4200/feedback

我看到有人问过如何实施刷新以保持同一条路线。所以我猜,默认角度应该在浏览器刷新时重定向到主页。知道为什么我的角度默认项目会这样做吗?

以下是我的AppRoutingModule

import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';

import { SmileyFeedbackComponent } from '../smiley-feedback/smiley-feedback.component';
import { FeedbackFormComponent } from '../feedback-form/feedback-form.component';
import { ThankYouComponent } from '../thank-you/thank-you.component';

const routes: Routes = [
  { path: '', redirectTo: '/smiley', pathMatch: 'full' },
  { path: 'smiley', component: SmileyFeedbackComponent },
  { path: 'feedback', component: FeedbackFormComponent },
  { path: 'thank-you', component: ThankYouComponent }
];

@NgModule({
  imports: [
    RouterModule.forRoot(routes)
  ],
  exports: [ RouterModule ],
  declarations: []
})
export class AppRoutingModule { }

3 个答案:

答案 0 :(得分:33)

正如Chris Sharp所说,你的应用正在做它应该做的事情,路由到url指向的地方,因为你没有告诉它。

您可以做的是,app.component您可以OnInit重定向到root。这意味着当(重新)初始化应用程序时,您将被重定向到根页面。

export class AppComponent { 
  constructor(private router: Router) {}

  ngOnInit() {
    this.router.navigate([''])
  }
}

答案 1 :(得分:5)

导入路由器

import { Router } from '@angular/router';

在构造函数中启动路由器

export class LoginComponent implements OnInit {
 constructor(private router:Router) {}
  loginCheck() {
    /*Your HTTP REQUEST HERE */
    this.router.navigate(['/*Your Path Here*/']) 
  }
}

答案 2 :(得分:-1)

如果您需要在角度8中重新加载页面,请执行以下操作,它对我有用。

<a href="/page">Go to page</a>