Tab控件中的组件

时间:2019-12-20 14:23:16

标签: angular routing

我的应用程序组件包含一个由2个组件构成的选项卡控件:

const routes: Routes = [
  {
    path: '', children: [
      {path: '', pathMatch: 'full', redirectTo: 'timing'},
      {path: 'timing', component: TimingComponent},
      {path: 'fio', component: FioComponent}
    ]
  }
];

启动index.html时,由于“ redirectTo”而运行“ timing”的构造函数。我也想运行'fio'的构造函数,因为我想让fio将其对象注册到服务中。该服务用于将信息传递给fio组件。

有可能吗?

1 个答案:

答案 0 :(得分:0)

使用路由解析器。在父路由中实现一个解析器来处理XML,在子路由中注入ActivatedRoute并订阅route.parent.data。