angular-cn/aio/content/guide/ngmodule-api.md

412 lines
14 KiB
Markdown
Raw Normal View History

# NgModule API
#### Prerequisites
#### 前提条件
A basic understanding of the following concepts:
2018-03-03 08:06:01 -05:00
对下列概念有基本的理解:
* [Bootstrapping](guide/bootstrapping).
2018-03-03 08:06:01 -05:00
2018-03-24 01:12:42 -04:00
[引导启动](guide/bootstrapping)。
2018-03-21 02:02:05 -04:00
* [JavaScript Modules vs. NgModules](guide/ngmodule-vs-jsmodule).
2018-03-24 01:12:42 -04:00
[JavaScript 模块与 NgModules](guide/ngmodule-vs-jsmodule)。
<hr />
## Purpose of `@NgModule`
2018-03-21 02:02:05 -04:00
## `@NgModule` 的设计意图
At a high level, NgModules are a way to organize Angular apps
and they accomplish this through the metadata in the `@NgModule`
decorator. The metadata falls
into three categories:
2018-03-21 02:02:05 -04:00
宏观来讲NgModule 是组织 Angular 应用的一种方式,它们通过 `@NgModule` 装饰器中的元数据来实现这一点。
这些元数据可以分成三类:
* **Static:** Compiler configuration which tells the compiler about directive selectors and where in templates the directives should be applied through selector matching. This is configured via the `declarations` array.
2018-03-03 08:06:01 -05:00
2018-03-24 01:12:42 -04:00
**静态的:**编译器配置,用于告诉编译器指令的选择器并通过选择器匹配的方式决定要把该指令应用到模板中的什么位置。它是通过 `declarations` 数组来配置的。
2018-03-21 02:02:05 -04:00
* **Runtime:** Injector configuration via the `providers` array.
2018-03-03 08:06:01 -05:00
2018-03-24 01:12:42 -04:00
**运行时:**通过 `providers` 数组提供给注入器的配置。
2018-03-21 02:02:05 -04:00
* **Composability/Grouping:** Bringing NgModules together and making them available via the `imports` and `exports` arrays.
2018-03-24 01:12:42 -04:00
**组合/分组:**通过 `imports``exports` 数组来把多个 NgModule 放在一起,并彼此可用。
2018-03-21 02:02:05 -04:00
```typescript
2018-03-06 22:25:56 -05:00
@NgModule({
// Static, that is compiler configuration
declarations: [], // Configure the selectors
entryComponents: [], // Generate the host factory
// Runtime, or injector configuration
providers: [], // Runtime injector configuration
// Composability / Grouping
imports: [], // composing NgModules together
exports: [] // making NgModules available to other parts of the app
})
2018-03-06 22:25:56 -05:00
```
## `@NgModule` metadata
2018-03-21 02:02:05 -04:00
## `@NgModule` 元数据
The following table summarizes the `@NgModule` metadata properties.
下面是 `@NgModule` 元数据中属性的汇总表:
2018-03-07 01:35:57 -05:00
<table>
<tr>
<th>
2018-03-03 08:06:01 -05:00
Property
2018-03-03 08:06:01 -05:00
属性
</th>
<th>
2018-03-03 08:06:01 -05:00
Description
2018-03-03 08:06:01 -05:00
2018-03-07 01:35:57 -05:00
说明
2018-03-03 08:06:01 -05:00
</th>
</tr>
<tr>
<td style="vertical-align: top">
2018-03-03 08:06:01 -05:00
<code>declarations</code>
2018-03-03 08:06:01 -05:00
</td>
<td>
A list of [declarable](guide/ngmodule-faq#q-declarable) classes,
(*components*, *directives*, and *pipes*) that _belong to this module_.
2018-03-21 02:02:05 -04:00
*属于该模块*的[可声明对象](guide/ngmodule-faq#q-declarable)*组件*、*指令*和*管道*)的列表。
<ol>
2018-03-03 08:06:01 -05:00
<li>
2018-03-03 08:06:01 -05:00
2018-03-06 22:25:56 -05:00
When compiling a template, you need to determine a set of selectors which should be used for triggering their corresponding directives.
2018-03-03 08:06:01 -05:00
2018-03-21 02:02:05 -04:00
当编译模板时,你需要确定一组选择器,它们将用于触发相应的指令。
2018-03-06 22:25:56 -05:00
</li>
<li>
2018-03-23 23:16:33 -04:00
2018-03-06 22:25:56 -05:00
The template is compiled within the context of an NgModule&mdash;the NgModule within which the template's component is declared&mdash;which determines the set of selectors using the following rules:
2018-03-23 23:16:33 -04:00
2018-03-21 02:02:05 -04:00
该模板在 NgModule 环境中编译 —— 模板的组件是在该 NgModule 内部声明的,它会使用如下规则来确定这组选择器:
<ul>
2018-03-03 08:06:01 -05:00
2018-03-06 22:25:56 -05:00
<li>
2018-03-03 08:06:01 -05:00
2018-03-06 22:25:56 -05:00
All selectors of directives listed in `declarations`.
2018-03-03 08:06:01 -05:00
2018-03-21 02:02:05 -04:00
列在 `declarations` 中的所有指令选择器。
2018-03-06 22:25:56 -05:00
</li>
2018-03-03 08:06:01 -05:00
2018-03-06 22:25:56 -05:00
<li>
All selectors of directives exported from imported NgModules.
2018-03-03 08:06:01 -05:00
2018-03-21 02:02:05 -04:00
从所导入的 NgModule 中导出的那些指令的选择器。
2018-03-06 22:25:56 -05:00
</li>
</ul>
2018-03-24 04:33:17 -04:00
2018-03-06 22:25:56 -05:00
</li>
2018-03-24 04:33:17 -04:00
</ol>
Components, directives, and pipes must belong to _exactly_ one module.
The compiler emits an error if you try to declare the same class in more than one module.
2018-03-07 02:42:49 -05:00
组件、指令和管道*只能*属于一个模块。
如果尝试把同一个类声明在多个模块中,编译器就会报告一个错误。
Don't re-declare a class imported from another module.
2018-03-21 02:02:05 -04:00
不要重复声明从其它模块中导入的类。
</td>
</tr>
<tr>
<td style="vertical-align: top">
2018-03-03 08:06:01 -05:00
<code>providers</code>
2018-03-03 08:06:01 -05:00
</td>
<td>
A list of dependency-injection providers.
2018-03-07 01:35:57 -05:00
依赖注入提供商的列表。
Angular registers these providers with the NgModule's injector.
If it is the NgModule used for bootstrapping then it is the root injector.
2018-03-21 02:02:05 -04:00
Angular 会使用该模块的注入器注册这些提供商。
如果该模块是启动模块,那就会使用根注入器。
These services become available for injection into any component, directive, pipe or service which is a child of this injector.
2018-03-21 02:02:05 -04:00
当需要注入到任何组件、指令、管道或服务时,这些服务对于本注入器的子注入器都是可用的。
A lazy-loaded module has its own injector which
is typically a child of the application root injector.
2018-03-21 02:02:05 -04:00
惰性加载模块有自己的注入器,它通常是应用的根注入器的子注入器。
Lazy-loaded services are scoped to the lazy module's injector.
If a lazy-loaded module also provides the `UserService`,
any component created within that module's context (such as by router navigation)
gets the local instance of the service, not the instance in the root application injector.
2018-03-21 02:02:05 -04:00
惰性加载的服务是局限于这个惰性加载模块的注入器中的。
如果惰性加载模块也提供了 `UserService`,那么在这个模块的上下文中创建的任何组件(比如在路由器导航时),都会获得这个服务的本模块内实例,而不是来自应用的根注入器的实例。
Components in external modules continue to receive the instance provided by their injectors.
2018-03-21 02:02:05 -04:00
其它外部模块中的组件也会使用它们自己的注入器提供的服务实例。
For more information on injector hierarchy and scoping, see [Providers](guide/providers).
2018-03-21 02:02:05 -04:00
要深入了解关于多级注入器及其作用域,参见[服务提供商](guide/providers)。
</td>
</tr>
<tr>
<td style="vertical-align: top">
2018-03-03 08:06:01 -05:00
<code>imports</code>
2018-03-03 08:06:01 -05:00
</td>
<td>
A list of modules which should be folded into this module. Folded means it is
as if all the imported NgModule's exported properties were declared here.
2018-03-21 02:02:05 -04:00
要折叠Folded进本模块中的其它模块。折叠的意思是从被导入的模块中导出的那些软件资产同样会被声明在这里。
Specifically, it is as if the list of modules whose exported components, directives, or pipes
are referenced by the component templates were declared in this module.
2018-03-21 02:02:05 -04:00
特别是,这里列出的模块,其导出的组件、指令或管道,当在组件模板中被引用时,和本模块自己声明的那些是等价的。
A component template can [reference](guide/ngmodule-faq#q-template-reference) another component, directive, or pipe
when the reference is declared in this module or if the imported module has exported it.
For example, a component can use the `NgIf` and `NgFor` directives only if the
module has imported the Angular `CommonModule` (perhaps indirectly by importing `BrowserModule`).
2018-03-21 02:02:05 -04:00
组件模板可以[引用](guide/ngmodule-faq#q-template-reference)其它组件、指令或管道,不管它们是在本模块中声明的,还是从导入的模块中导出的。
比如,只有当该模块导入了 Angular 的 `CommonModule也可能从 `BrowserModule` 中间接导入)时,组件才能使用 `NgIf``NgFor` 指令。
You can import many standard directives from the `CommonModule`
but some familiar directives belong to other modules.
For example, you can use `[(ngModel)]` only
after importing the Angular `FormsModule`.
2018-03-21 02:02:05 -04:00
你可以从 `CommonModule` 中导入很多标准指令,不过也有些常用的指令属于其它模块。
比如,你只有导入了 Angular 的 `FormsModule` 时才能使用 `[(ngModel)]`
</td>
</tr>
<tr>
<td style="vertical-align: top">
2018-03-03 08:06:01 -05:00
<code>exports</code>
2018-03-03 08:06:01 -05:00
</td>
<td>
A list of declarations&mdash;*component*, *directive*, and *pipe* classes&mdash;that
an importing module can use.
2018-03-07 02:42:49 -05:00
可供导入了自己的模块使用的可声明对象(**组件**、**指令**、**管道类**)的列表。
Exported declarations are the module's _public API_.
A component in another module can [use](guide/ngmodule-faq#q-template-reference) _this_
module's `UserComponent` if it imports this module and this module exports `UserComponent`.
2018-03-21 02:02:05 -04:00
导出的可声明对象就是本模块的*公共 API*。
只有当其它模块导入了本模块,并且本模块导出了 `UserComponent` 时,其它模块中的组件才能[使用](guide/ngmodule-faq#q-template-reference)*本*模块中的 `UserComponent`
Declarations are private by default.
If this module does _not_ export `UserComponent`, then only the components within _this_
module can use `UserComponent`.
2018-03-21 02:02:05 -04:00
默认情况下这些可声明对象都是私有的。
如果本模块*没有*导出 `UserComponent`,那么就只有*本*模块中的组件才能使用 `UserComponent`
Importing a module does _not_ automatically re-export the imported module's imports.
Module 'B' can't use `ngIf` just because it imported module 'A' which imported `CommonModule`.
Module 'B' must import `CommonModule` itself.
2018-03-21 02:02:05 -04:00
导入某个模块*并不会*自动重新导出被导入模块的那些导入。
模块 B 不会因为它导入了模块 A而模块 A 导入了 `CommonModule` 而能够使用 `ngIf`
模块 B 必须自己导入 `CommonModule`
A module can list another module among its `exports`, in which case
all of that module's public components, directives, and pipes are exported.
一个模块可以把另一个模块加入自己的 `exports` 列表中,这时,另一个模块的所有公共组件、指令和管道都会被导出。
2018-03-07 02:42:49 -05:00
[Re-export](guide/ngmodule-faq#q-reexport) makes module transitivity explicit.
If Module 'A' re-exports `CommonModule` and Module 'B' imports Module 'A',
Module 'B' components can use `ngIf` even though 'B' itself didn't import `CommonModule`.
2018-03-21 02:02:05 -04:00
[重新导出](guide/ngmodule-faq#q-reexport)可以让模块被显式传递。
如果模块 A 重新导出了 `CommonModule`,而模块 B 导入了模块 A那么模块 B 就可以使用 `ngIf` 了 —— 即使它自己没有导入 `CommonModule`
</td>
</tr>
<tr>
<td style="vertical-align: top">
2018-03-03 08:06:01 -05:00
<code>bootstrap</code>
2018-03-03 08:06:01 -05:00
</td>
<td>
A list of components that are automatically bootstrapped.
2018-03-24 01:12:42 -04:00
2018-03-21 02:02:05 -04:00
要自动启动的组件列表。
Usually there's only one component in this list, the _root component_ of the application.
2018-03-07 01:35:57 -05:00
通常,在这个列表中只有一个组件,也就是应用的*根组件*。
Angular can launch with multiple bootstrap components,
each with its own location in the host web page.
Angular 也可以引导多个引导组件,它们每一个都在宿主页面中有自己的位置。
2018-03-07 01:35:57 -05:00
A bootstrap component is automatically added to `entryComponents`.
2018-03-21 02:02:05 -04:00
启动组件会自动添加到 `entryComponents` 中。
</td>
</tr>
<tr>
<td style="vertical-align: top">
2018-03-03 08:06:01 -05:00
<code>entryComponents</code>
2018-03-03 08:06:01 -05:00
</td>
<td>
A list of components that can be dynamically loaded into the view.
2018-03-24 01:12:42 -04:00
2018-03-21 02:02:05 -04:00
那些可以动态加载进视图的组件列表。
By default, an Angular app always has at least one entry component, the root component, `AppComponent`. Its purpose is to serve as a point of entry into the app, that is, you bootstrap it to launch the app.
2018-03-21 02:02:05 -04:00
默认情况下Angular 应用至少有一个入口组件,也就是根组件 `AppComponent`
它用作进入该应用的入口点,也就是说你通过引导它来启动本应用。
Routed components are also _entry components_ because they need to be loaded dynamically.
The router creates them and drops them into the DOM near a `<router-outlet>`.
2018-03-21 02:02:05 -04:00
路由组件也是*入口组件*,因为你需要动态加载它们。
路由器创建它们,并把它们扔到 DOM 中的 `<router-outlet>` 附近。
While the bootstrapped and routed components are _entry components_,
you don't have to add them to a module's `entryComponents` list,
as they are added implicitly.
2018-03-21 02:02:05 -04:00
虽然引导组件和路由组件都是*入口组件*,不过你不用自己把它们加到模块的 `entryComponents` 列表中,因为它们会被隐式添加进去。
Angular automatically adds components in the module's `bootstrap` and route definitions into the `entryComponents` list.
2018-03-21 02:02:05 -04:00
Angular 会自动把模块的 `bootstrap` 中的组件和路由定义中的组件添加到 `entryComponents` 列表。
That leaves only components bootstrapped using one of the imperative techniques, such as [`ViewComponentRef.createComponent()`](https://angular.io/api/core/ViewContainerRef#createComponent) as undiscoverable.
而那些使用不易察觉的[`ViewComponentRef.createComponent()`](https://angular.cn/api/core/ViewContainerRef#createComponent)的方式进行命令式引导的组件仍然需要添加。
2018-03-21 02:02:05 -04:00
Dynamic component loading is not common in most apps beyond the router. If you need to dynamically load components, you must add these components to the `entryComponents` list yourself.
2018-03-21 02:02:05 -04:00
动态组件加载在除路由器之外的大多数应用中都不太常见。如果你需要动态加载组件,就必须自己把那些组件添加到 `entryComponents` 列表中。
For more information, see [Entry Components](guide/entry-components).
2018-03-03 08:06:01 -05:00
要了解更多,参见[入口组件](guide/entry-components)一章。
</td>
</tr>
</table>
<hr />
## More on NgModules
2018-03-21 02:02:05 -04:00
## 关于 NgModule 的更多知识
You may also be interested in the following:
2018-03-03 08:06:01 -05:00
2018-03-21 02:02:05 -04:00
你可能还对下列内容感兴趣:
* [Feature Modules](guide/feature-modules).
2018-03-03 08:06:01 -05:00
2018-03-24 01:12:42 -04:00
[特性模块](guide/feature-modules)
2018-03-21 02:02:05 -04:00
* [Entry Components](guide/entry-components).
2018-03-03 08:06:01 -05:00
2018-03-24 01:12:42 -04:00
[入口组件](guide/entry-components)
2018-03-21 02:02:05 -04:00
* [Providers](guide/providers).
2018-03-03 08:06:01 -05:00
2018-03-24 04:33:17 -04:00
[服务提供商](guide/providers)。
2018-03-21 02:02:05 -04:00
* [Types of Feature Modules](guide/module-types).
2018-03-21 02:02:05 -04:00
2018-03-24 04:33:17 -04:00
[特性模块的分类](guide/module-types)。