标签:注入 启动 https port soft ref api 其他 size
@NgModule:元数据描述。在angular中module是使用@NgModule修饰的class。
@NgModule中属性详解:
providers:定义此模块的注入器中可用的一组注入对象。指定应用程序的根级别需要使用的service。
declarations:指定属于此模块的指令或者是管道列表。
imports:导入其他的module,其他module暴露在exports下面的指令或者管道列表可以在 本模块中使用。
exports:指定可以在导入此模块的Angular模块中使用的指令或管道或模块列表。
bootstrap:通常是app启动的根组件,一般只有一个component。bootstrap中的组件会自动被放入到entryComponents中。
标签:注入 启动 https port soft ref api 其他 size
原文地址:http://www.cnblogs.com/leijing0607/p/7909034.html