我似乎无法在子路线之间导航.
路由器概述:
path: 'parent',component: parentComponent,children: [ { path: '',redirectTo: 'child1',pathMatch: 'full' },{ path: 'child1',component: child1Component },{ path: 'child2',component: child2Component },{ path: 'new/:type',component: child3Component },{ path: '**',component: PageNotFoundComponent } ]
我在child1组件中尝试导航到新的/类型路由,如下所示:
this._router.navigate(['new',objType],{ relativeTo: this._route });
但我不断收到错误:无法匹配任何路线.网址细分:’新/资产’.
如果我手动插入网址,它工作正常.
非常感谢帮助,谢谢!
您可以使用 ../
原文链接:https://www.f2er.com/angularjs/142386.htmlthis._router.navigate(['../new',{ relativeTo: this._route });