使用Angular4中的路径参数导航时,浏览器中的URL不会更改

时间:2017-10-14 23:15:39

标签: angular url-routing angular2-routing

我为.Net core angular app定义了以下路由。 当我导航到project-form/:id时,它会转到页面,但URL在浏览器中不会更改,它只会保留在当前页面URL上。

{ path: 'project-form', component: ProjectFormComponent },
{ path: 'project-form/:id', component: ProjectFormComponent },
{ path: 'home', component: HomeComponent },
{ path: 'dt-instance', component: DtInstanceComponent },
{ path: 'project-dashboard', component: DashboardComponent },
{ path: '**', redirectTo: 'home' }

0 个答案:

没有答案