答案 0 :(得分:1)
您可以通过一种方式查看路由发生的情况是打开路由跟踪。我在这里有一个例子:https://github.com/DeborahK/Angular-Routing
RouterModule.forRoot([
{ path: 'welcome', component: WelcomeComponent },
{ path: '', redirectTo: 'welcome', pathMatch: 'full' },
{ path: '**', component: PageNotFoundComponent }
], { enableTracing: true })