1.2.模块划分
推荐模块划分图
后期补充核心模块
创建模块
ng g m core如何保障core只被加载一次?
export function throwIfAlreadyLoaded(parentModule: any, moduleName: string) {
if (parentModule) {
throw new Error(`${moduleName} has already been loaded. Import Core modules in the AppModule only.`);
}
}共享模块
创建模块
常见的共享模块有:
参考代码
工具文件夹
领域对象文件夹
Last updated