Module(模块)
Posted Failbs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Module(模块)相关的知识,希望对你有一定的参考价值。
1.每个Angular至少有一个根Module
2.Module时一个带有@NgModule装饰符的类
3.最简单的Module
1 import { NgModule } from ‘@angular/core‘; 2 import { LentestComponent } from ‘./lentest.component‘ 3 import { LentestService } from ‘./lentest.service‘ 4 5 @NgModule({ 6 imports: [], 7 declarations: [ LentestComponent,] 8 providers: [LentestService, ], 9 exports: [LentestComponent, ], 10 bootstrap: [LentestComponent,] 11 }) 12 export class LentestModule{}
其中
imports - 导入其他Module,例如本Module需要用到的其他导出类的Module;
declarations - 声明(引用)需要用到的Component;
exports - 输出Component,供别的Module使用,它是declarations的子集;
providers - 输出Service,service(服务)的创建者,将列表内容加入到全局的服务表中,提供给别的Module使用;
bootstrap - 启动模块,只在根Module使用,其他Module不能使用;
官方说法:启动Module为根Module,自定义的其他Module称为特性Module;特性Module不能import根Module;
以上是关于Module(模块)的主要内容,如果未能解决你的问题,请参考以下文章
[react] Module not found: Can't resolve 'schedule' in 'C:Usersadcaldvmtn7myapp (代码片段