Angular的新手,并尝试在模块中构建代码。 我有一个响应
的管理模块/管理员
请求,现在我正在尝试向管理模块添加另一个子模块,称为投资组合模块。
除了我希望投资组合模块能够响应
之外,这行得通/ admin / portfolio
请求。现在它响应
/投资组合
改为请求。
这里我要导入PortfolioModule
admin.module.ts
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { AdminRoutingModule } from './admin-routing.module';
import { IndexComponent } from './shared/index/index.component';
import {PortfolioModule} from './portfolio/portfolio.module';
@NgModule({
declarations: [IndexComponent],
imports: [
CommonModule,
PortfolioModule,
AdminRoutingModule
]
})
export class AdminModule { }
考虑到我可能需要将PortfolioModule定义为子路线。在管理路由中。
admin-routing.module.ts
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { IndexComponent } from './shared/index/index.component';
const routes: Routes = [
{
path: 'admin',
component: IndexComponent,
children: [
{
path: 'portfolio',
/*Maybe add Portfolio Module here?*/
}
]
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class AdminRoutingModule { }
这是我的投资组合模块,没什么特别的。
portfolio.module.ts
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { PortfolioRoutingModule } from './portfolio-routing.module';
import { IndexComponent } from './index/index.component';
import { CreateComponent } from './create/create.component';
import { ListComponent } from './list/list.component';
import { UpdateComponent } from './update/update.component';
@NgModule({
declarations: [IndexComponent, CreateComponent, ListComponent, UpdateComponent],
imports: [
CommonModule,
PortfolioRoutingModule
]
})
export class PortfolioModule { }
最后,这是我的投资组合路由,也许我在这里缺少一些东西,告诉它包括父路由。
portfolio-routing.module.ts
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { IndexComponent } from './index/index.component';
import { ListComponent } from './list/list.component';
import { CreateComponent } from './create/create.component';
import { UpdateComponent } from './update/update.component';
const routes: Routes = [
{
path: 'portfolio',
component: IndexComponent,
children: [
{
path: 'list',
component: ListComponent
},
{
path: 'create',
component: CreateComponent
},
{
path: 'update',
component: UpdateComponent
}
]
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class PortfolioRoutingModule { }
答案 0 :(得分:2)
当您延迟加载时,模块的路径根应该在声明延迟加载模块的模块的路由中。
例如,path: 'portfolio'
将在admin-routing.module
中声明为路由,而您的IndexComponent
的{{1}}将具有空路径(portfolio-routing.module
)。另外,path: ''
属性可能不是必需的,因为所有路由都将处于同一级别。
您的路由可能看起来像这样。
children
...
const routes: Routes = [
{
path: 'admin',
loadChildren: './admin/admin.module#AdminModule'
}
]
...
...
const routes: Routes = [
{
path: '',
component: AdminIndexComponent
},
{
path: 'portfolio',
loadChildren: './portfolio/portfolio.module#PortfolioModule'
}
]
...
我还将以下示例的工作堆栈闪电以及用于延迟加载特征模块的角度指南文档放在一起。