5

在我的应用程序中,我想在两个路由器插座中显示内容,主插座和命名插座。如果我将两个插座都放在根级别,我可以像这样设置命名插座的内容:

this.router.navigate([{ outlets: { rootSecondary: ['rootSecondaryPath'] } }]);

但是,我希望应用程序的总体布局能够提供单个路由器出口并能够在子路由中使用不同的路由器出口结构。

如果我创建一个子路由,它也有一个主要和一个命名出口,我无法设置辅助出口的内容。报告的错误是:

无法匹配任何路由。

路由定义如下:

const appRoutes: Routes = [
  { path: '', component: RootPrimaryComponent },
  { path: 'rootSecondaryPath', component: RootSecondaryComponent, outlet: 'rootSecondary' },
  {
    path: 'child', component: ChildComponent, children:
      [
        { path: '', component: ChildPrimaryComponent },
        { path: 'childSecondaryPath', component: ChildSecondaryComponent, outlet: 'childSecondary' },
      ]
  },
];
const appRouting = RouterModule.forRoot(appRoutes);

app.component.html的模板包含一个主要出口和 - 出于测试目的 - 一个命名的次要出口:

<router-outlet></router-outlet>
<div style="border: solid 1px green">
  <router-outlet name="rootSecondary"></router-outlet>
</div>

上面的代码是从一个按钮调用的,并且设置了 rootSecondary 出口没有任何问题。

模板child.component.html定义了两个位于根主出口内部的出口:

<router-outlet></router-outlet>
<div style="border:solid 1px red">
  <router-outlet name="childSecondary"></router-outlet>
</div>

child.primary.component.html包含一个按钮,该按钮调用代码来设置辅助插座:

<div>
  child-primary works!
  <button (click)="setChildSecondary()">Set child secondary</button>
</div>

单击后,将运行以下代码:

setChildSecondary() {
  this.router.navigate([{ outlets: { childSecondary: ['childSecondaryPath'] } }]);
}

如何更改代码以填充路由器插座 childSecondary?

4

1 回答 1

6

为了解决这个问题,我需要将relativeTo参数设置为当前活动路由的父级:

export class ChildPrimaryComponent {

  constructor(private readonly router: Router,
    private readonly route: ActivatedRoute) { }

  setChildSecondary() {
    this.router.navigate([{ outlets: { childSecondary: ['childSecondaryPath'] } }],
      { relativeTo: this.route.parent });
  }
}
于 2017-12-09T06:54:56.823 回答