在儿童路线Angular 2之间导航

前端之家收集整理的这篇文章主要介绍了在儿童路线Angular 2之间导航前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我似乎无法在子路线之间导航.

路由器概述:

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 });

但我不断收到错误:无法匹配任何路线.网址细分:’新/资产’.

如果我手动插入网址,它工作正常.

非常感谢帮助,谢谢!

您可以使用 ../
this._router.navigate(['../new',{ relativeTo: this._route });
原文链接:https://www.f2er.com/angularjs/142386.html

猜你在找的Angularjs相关文章