以下代码确实更改了浏览器中的链接,但该组件不会在链接中呈现该链接。它曾经在我没有定时器时更早地工作但是尽管做了clearTimeout()它仍然会做同样的事情。
const appRoutes: Routes = [
{ path: '', component: HomeComponent, pathMatch: 'full' },
{ path: ':id', component: QuizComponent },
{ path: 'score', component: ScoreComponent },
];
export const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes,
{ useHash: true });
这是我的路由器:
accept