使用Angular 4,我的Routes集合中有以下内容:
{
path:"**", //wildcard
component: NotFoundComponent,
}
如果我尝试导航到http://127.0.0.1:8000/xxx,我会正确路由到我的NotFoundComponent,但是如果我尝试导航到http://127.0.0.1:8000/xxx_(xxx)我没有。
我尝试了各种各样的排列{
path:"**_(**)",
component: NotFoundComponent,
},
放在我的通配符路径之前,但它们也没有工作。想法?