3

给定以下模块,我如何创建路由,以便当应用程序加载此模块时,它将路由到CComponentAComponent加载到命名的路由器出口search-results

app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';

import { AComponent } from './a.component';
import { BComponent } from './b.component';
import { CComponent } from './c.component';

@NgModule({
  declarations: [
    AComponent,
    BComponent,
    CComponent
  ],
  imports: [
    BrowserModule,
    RouterModule.forRoot([
      {
        path: '',
        pathMatch: 'prefix',
        component: CComponent,
        children: [
          {
            path: 'a',
            component: AComponent,
            outlet: 'search-results'
          },
          {
            path: 'b',
            component: BComponent,
            outlet: 'search-results'
          }
       ]
    ])
  ],
  providers: [],
  bootstrap: [CComponent]
})
export class AppModule {}

a.component.ts

import { Component } from '@angular/core';

@Component({
  selector: 'a-component',
  template: `
      <div class="tabs row">
        <h3 [routerLink]="[{ outlets: { 'search-results': ['a'] } }]" class="tab" routerLinkActive="active">
          A
        </h3>
        <h3 [routerLink]="[{ outlets: { 'search-results': ['b'] } }]" class="tab" routerLinkActive="active">
          B
        </h3>
      </div>
    <router-outlet name="search-results"></router-outlet>
  `
})
export class AComponent {
}

我在路线上尝试了许多不同的东西:

使用上述配置,页面会加载,但AComponent不会加载到屏幕上。

如果我更新CComponent为具有以下内容:

export class CComponent {
  constructor(
    private route: ActivatedRoute,
    private router: Router
  ) {
    router.navigate(
      [
        {
          outlets: {
            'search-results': ['a']
          }
        }
      ], { relativeTo: route });
  }
}

然后一切似乎都正常,但是必须在父元素的构造函数中触发该导航似乎是错误的。

如果我更新子路由并替换{ path: 'a', component: AComponent, outlet: 'search-results' }{ path: '', component: AComponent, outlet: 'search-results' },路由器似乎在插座中正确加载了该组件,但该routerLinkActive指令似乎没有生效,因为active该类未添加到第一个 h3 并且更新routerLinktooutlets: { 'search-results': ['a'] }没有导航到AComponent后允许导航回BComponent

我在上面尝试了许多变体,但都没有成功。

有没有办法配置路由,以便默认路由将加载CComponent到主要的未命名router-outletAComponent命名的search-results路由器插座中?

Plunkr

4

1 回答 1

3

目前,您正在定义基本路由的子路由,其中​​之一是/a(加载AComponentsearch-results出口的路径),但当应用程序加载时,您实际上并没有进入该路径。当您必须navigate在您的路线中使用该路线时,它会起作用CComponent(在加载时确实会被初始化)。

如果您希望应用程序最初加载时(search-results):a路由处于活动状态,您可以在路由定义中使用该redirectTo属性

在您的情况下,我将在初始路由(空路径:)上进行模式匹配''并重定向到/a加载的路径,如下所示:

RouterModule.forRoot([
      /* this line will match the initially loaded route and 
       immediately redirect to the child route 'a', which loads 
       `AComponent` into the `search-results` outlet */
      { path: '', pathMatch: 'full', redirectTo: '(search-results:a)'},

      {
        path: '',
        pathMatch: 'prefix',
        component: CComponent,
        children: [
          {
            path: 'a',
            component: AComponent,
            outlet: 'search-results'
          },
          {
            path: 'b',
            component: BComponent,
            outlet: 'search-results'
          }
       ]
      }
    ])

请注意,上述代码段中的顺序很重要。它将匹配空路径,重定向到子路由,并在指定的插座中加载您想要的组件(如您在代码中定义的那样)。

于 2018-01-16T14:14:05.360 回答