Angular2 NgModule 模块详解
angular的模块的目的是用来组织app的逻辑结构。
在ng中使用@ngmodule修饰的class就被认为是一个ng module。ngmodule可以管理模块内部的components、directives、pipes,引入service,并控制外部组件对内部成员的访问权限。
angular2 具有了模块的概念,响应了后台程序的号召,高内聚 低耦合。模块就是用来进行封装,进行高内聚 低耦合的功能。
其实各人认为ng2 的模块和.net的工程类似,如果要使用模块中定义的功能,第一步就是必须要引用它,ng2 中叫import 导入。
那么我们看模块是否有层级概念呢,至少目前来看,模块都是平级的,没有主子之分。
如何定义模块呢?
import { ngmodule } from '@angular/core'; import { browsermodule } from '@angular/platform-browser'; /* app root */ import { appcomponent } from './app.component'; /* feature modules */ import { contactmodule } from './contact/contact.module'; import { coremodule } from './core/core.module'; import { routing } from './app.routing'; import { title } from '@angular/platform-browser'; @ngmodule({ imports: [ browsermodule, contactmodule, /* coremodule, */ coremodule.forroot({ username: 'miss marple' }), routing ], declarations: [appcomponent],//声明当前模块需要的指定 组件信息 exports:[], providers: [title], bootstrap: [appcomponent] }) export class appmodule { }
简单说明一下模块元数据中各个参数的用途。
imports:导入其他模块,就是要使用其他模块的功能,必须要导入。
declarations:声明,声明本模块包含的内容。可能有些同学会遇到,定义了一个指令,在component中使用却总是没有生效的问题,首先我们要检查的就是是否进行了声明。
exports:外部可见的内容。相当于.net中声明为public的那些类。
providers:服务提供者,主要用来定义服务。估计ng2框架会自动将注册的服务体检到依赖注入实例中,目前测试也是如此。
bootstrap:启动模块。只在根模块使用。在除了根模块以外的其他模块不能使用。
2.问题2
目前官方叫法:启动模块为根模块,自定义的其他模块叫特性模块。
我们是否可以在特性模块中import根模块呢?
实验是检验真理的最好方法。
import { ngmodule } from '@angular/core'; import { sharedmodule } from '../shared/shared.module'; import { contactcomponent } from './contact.component'; import { contactservice } from './contact.service'; import { routing } from './contact.routing'; import{guozhiqimodule}from '../directives/guozhiqi.module'; import{appmodule}from '../app.module'; @ngmodule({ imports: [ sharedmodule, routing,guozhiqimodule,appmodule ],// 导入模块 declarations: [ contactcomponent ],//声明 指令 providers: [ contactservice ]//服务提供者 在当前模块提供者中注册当前模块需要的服务 }) export class contactmodule { }
appmodule是根模块,我们定义的contactmodule是特性模块,现在我们通过imports 导入根模块。
执行出现错误,contactmodule导入了一个undefined的module?
为什么会出现这个问题呢?
各人估计是因为1.导致了循环引用的问题。appmodule会加载contactmodule,而在contactmodule中又要import 根模块,导致循环引用,从而出现错误。
2.另一种解释就是根模块不允许导入。ng2框架不允许这样
问题3:如何避免出现循环引用呢?
官方给出了答案:https://angular.cn/docs/ts/latest/guide/ngmodule.html#!#prevent-reimport
constructor (@optional() @skipself() parentmodule: coremodule) { if (parentmodule) { throw new error( 'coremodule is already loaded. import it in the appmodule only'); } }
但是我本地验证并不会有效的验证如何避免重复import一个模块。
问题4. 模块与路由的关系。
基本上每个特性模块都有单独的路由定义,关于模块和路由的关系定义,下次说到ng2路由时再细说,因为ng2的路由太强大,以至于需要很长时间的理解才能明白。
ng2模块的目录和目录结构的最佳实践:
1.每个模块一个单独的文件夹
2.模块是高内聚 低耦合
3.模块内功能相关或相近
4.每个模块都有单独的路由定义 -不是必须
5.不要重复导入一些模块,必要的时候加入限制。 因为重复导入可能会影响依赖注入实例
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
上一篇: 云计算为地理信息产业发展带来新的机遇