作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 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
是一个沙盒组件,其中
PreviewComponent
和
EditComponent
将被渲染。
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/
我是一名优秀的程序员,十分优秀!