angular 分离app.module.ts代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angular 分离app.module.ts代码相关的知识,希望对你有一定的参考价值。

当项目足够大时,app.module.ts 里import代码太多了,所以要分离。

 

只需要把单独模块中的引用分开写就好了:

技术分享图片
 1 import { NgModule } from ‘@angular/core‘;
 2 import { CommonModule } from "@angular/common";//<--NgIf、NgFor等指令
 3 import { FormsModule } from "@angular/forms"; //<-- NgModel lives here 双向绑定
 4 import { HeroesComponent } from ‘./heroes.component‘
 5 import { HeroDetailComponent } from ‘./hero-detail.component‘;
 6 
 7 
 8 @NgModule({
 9     imports: [
10         CommonModule,
11         FormsModule
12     ],
13     declarations: [
14         HeroesComponent,
15         HeroDetailComponent
16     ]
17 })
18 
19 export class HeroModule { }
技术分享图片

最开始一直报错,是因为

主要是imports: []
不能写下面的两个componet
我多写了。。有时想还是不够明白原理。

然后在app.module.ts中import就好了。

技术分享图片

 



以上是关于angular 分离app.module.ts代码的主要内容,如果未能解决你的问题,请参考以下文章

我如何知道何时需要向app.module.ts添加内容?

将 nguniversal/express-engine 添加到 Angular 项目:“在 /src/app/app.module.ts 中找不到 BrowserModule 导入”

Angular 中的环境导入

如何根据条件配置Angular 5中的app-routing.module来加载两个子路由模块中的一个或另一个?

Angular-路由:路由的定义跳转传值

在Angular 10中使用模块化路由时如何正确处理404