愿君学长松,慎勿作桃李。这篇文章主要讲述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({ 9imports: [ 10CommonModule, 11FormsModule 12], 13declarations: [ 14HeroesComponent, 15HeroDetailComponent 16] 17 }) 18 19 export class HeroModule { }
文章图片
【angular 分离app.module.ts代码】最开始一直报错,是因为
主要是imports: []
不能写下面的两个componet
我多写了。。有时想还是不够明白原理。
然后在app.module.ts中import就好了。
文章图片
推荐阅读
- androidcarsh
- vue+vux 仿飞猪app火车票部分
- 安卓输入子系统之inotify与epoll机制学习笔记原创
- 斯坦福大学公开课机器学习(advice for applying machine learning - deciding what to try next(设计机器学习系统时,怎样确定最适合最正确的)
- Python中的JSON数据处理
- MongoDB和Python简介
- TensorFlow初学者教程
- Python中的决策树分类
- 读取Excel文件并将其导入R