gpt4 book ai didi

Angular : Relative navigation on a named router outlet

转载 作者:行者123 更新时间:2023-12-03 17:27:29 25 4
gpt4 key购买 nike

我有以下 Angular 线配置

const appRoutes: Routes = [
{
path: '',
component: DirectoryComponent
},
{
path: 'manage/:type/:id',
component: ManageComponent,
outlet: 'manage',
children: [
{
path: '',
component: PreviewComponent,
pathMatch: 'full'
},
{
path: 'add/:elementType',
component: EditComponent,
}
]
}
];
ManageComponent是一个沙盒组件,其中 PreviewComponentEditComponent将被渲染。

一个用户用例将用户重定向到 http://localhost:4200/#/(manage:manage/bar/12762)匹配预览组件。这里一切正常。

来自 PreviewComponent当用户单击按钮时,我想对 EditComponent 进行相对导航。导航完成后, http://localhost:4200/#/(manage:manage/bar/12762/add/foo)
我试过
this.router.navigate([{outlets: {manage: ['add', 'foo']}}],{relativeTo: this.route});


this.router.navigate([{outlets: {manage: ['add', 'foo']}}]);

但每次,用户都被重定向到 http://localhost:4200/#/add/foo .

我怎样才能做这个导航?

最佳答案

我知道这是一个老问题,但我在寻找答案时找到了解决方案。
您可以使用 { relativeTo: this.activatedRoute.parent }一切都像魅力一样。

关于 Angular : Relative navigation on a named router outlet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44524570/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com