如何从浏览器控制台日志中找到错误的来源?

时间:2017-07-17 22:55:53

标签: html angular firefox web angular2-routing

我的网络应用中存在路由错误,该错误显示在浏览器控制台的屏幕截图中。如何从此错误日志中判断该文件以及此调用的哪一行?

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以通过一种方式查看路由发生的情况是打开路由跟踪。我在这里有一个例子:https://github.com/DeborahK/Angular-Routing

RouterModule.forRoot([
    { path: 'welcome', component: WelcomeComponent },
    { path: '', redirectTo: 'welcome', pathMatch: 'full' },
    { path: '**', component: PageNotFoundComponent }
], { enableTracing: true })