我有一个主模块和一些子模块。我想在它们之间指定一些不平凡的路由。
我更喜欢在子模块中定义子模块的路由。例如:
@NgModule({
imports: [
/*...*/
RouterModule.forChild([
{ path: 'country', redirectTo: 'country/list' },
{ path: 'country/list', component: CountryListComponent },
{ path: 'country/create', component: CountryCreateComponent },
/*...*/
])
],
declarations: [/*...*/],
exports: [
RouterModule,
],
})
export class CountryModule {}
我想用它自己的内部路由导入这个模块,但我想让它的整个路由加前缀。
const appRoutes = [
{ path: '', component: HomeComponent },
/*... (basic routes)*/
];
@NgModule({
imports: [
/*...*/
RouterModule.forRoot(appRoutes),
CountryModule, // <- how to make its routing prefixed??
],
declarations: [
/*...*/
AppComponent,
],
bootstrap: [ AppComponent ]
})
export class AppModule {}
此设置创建以下路由:/country
,/country/list
等,但我想让它们像这样前缀:
/settings/country
/settings/country/list
/settings/country/create
我还想通过其他路由访问其他模块,例如CityModule
under/otherstuff/city/create
和 /otherstuff/city/list`。
我的问题:
- 是否可以导入具有自己路由的模块并为其路由添加前缀?
- 此外:有没有办法在 2 个子模块之间建立与它们的最终(前缀)路由无关的链接?
更新
公认的答案是最好的方法:在模块中创建路由,在外部注册它们。因此,您可以修改路由,例如为它们添加前缀(这是我想要的),您可以定义保护、覆盖或过滤它们等。