我是angular2 / 4的新手。我想在angular中使用通配符路由。也在通配符路由上。我想调用一些动作/方法。
由于
答案 0 :(得分:0)
{
path: '**',
component: NotFoundComponent
}
答案 1 :(得分:0)
即使您使用通配符路由,您也必须指向要加载的组件:
{
path: '**',
component: YourComponent
}
然后在您的组件中,您可以在ngOnInit
。