2017-05-08 23:47:34 -04:00
# NgModules
2017-03-31 19:57:13 -04:00
2017-07-29 12:03:22 -04:00
# Angular模块 (NgModule)
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
**NgModules** help organize an application into cohesive blocks of functionality.
<!-- CF: "app" and "application" are used interchangeably throughout this page.
I'm not sure what's appropriate, so I left them as is for now. -->
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
**Angular 模块**能帮你把应用组织成多个内聚的功能块。
2017-03-06 05:43:33 -05:00
An NgModule is a class adorned with the *@NgModule* decorator function.
2017-02-22 13:09:39 -05:00
`@NgModule` takes a metadata object that tells Angular how to compile and run module code.
2017-03-06 05:43:33 -05:00
It identifies the module's own components, directives, and pipes,
2017-02-22 13:09:39 -05:00
making some of them public so external components can use them.
2017-03-06 05:43:33 -05:00
`@NgModule` may add service providers to the application dependency injectors.
2017-02-22 13:09:39 -05:00
And there are many more options covered here.
2017-07-22 23:51:25 -04:00
Angular 模块是带有 ** @NgModule ** 装饰器函数的_类_。
`@NgModule` 接收一个元数据对象,该对象告诉 Angular 如何编译和运行模块代码。
它标记出该模块_拥有_的组件、指令和管道,
并把它们的一部分公开出去,以便外部组件使用它们。
它可以向应用的依赖注入器中添加服务提供商。
本章还会涉及到更多选项。
2017-03-06 05:43:33 -05:00
Before reading this page, read the
2017-06-09 17:48:53 -04:00
[The Root Module ](guide/bootstrapping ) page, which introduces NgModules and the essentials
2017-03-06 05:43:33 -05:00
of creating and maintaining a single root `AppModule` for the entire application.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
请先阅读[根模块](guide/appmodule)一章,那里介绍过 Angular 模块,以及如何为整个应用创建和维护单一的*根*`AppModule`类。
2017-03-06 05:43:33 -05:00
This page covers NgModules in greater depth.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
本章的解释更加详尽,正如下面的目录所示。
2017-05-04 12:46:43 -04:00
<!-- CF: See my comment in the "Resolve directive conflicts" section below proposing renaming or reorganizing that section.
2017-03-31 07:23:16 -04:00
2017-03-11 10:36:40 -05:00
* [Angular modularity ](guide/ngmodule#angular-modularity "Add structure to the app with NgModule" )
2017-07-22 23:51:25 -04:00
[Angular 模块化 ](guide/ngmodule#angular-modularity "用 NgModule 把结构添加到应用中" )
2017-03-11 10:36:40 -05:00
* [The application root module ](guide/ngmodule#root-module "The startup module that every app requires" )
2017-07-22 23:51:25 -04:00
[应用的根模块 ](guide/ngmodule#root-module "任何应用都需要的启动模块" )
2017-04-27 18:32:46 -04:00
* [Bootstrap the root module ](guide/ngmodule#bootstrap "Launch the app in a browser with the root module as the entry point" )
2017-07-22 23:51:25 -04:00
2017-07-29 12:03:22 -04:00
[引导根模块 ](guide/ngmodule#bootstrap "在浏览器中把根模块作为入口点来启动应用" )
2017-07-22 23:51:25 -04:00
2017-03-11 10:36:40 -05:00
* [Declarations ](guide/ngmodule#declarations "Declare the components, directives, and pipes that belong to a module" )
2017-07-22 23:51:25 -04:00
[声明 ](guide/ngmodule#declarations "声明从属于模块的组件、指令和管道" )
2017-03-11 10:36:40 -05:00
* [Providers ](guide/ngmodule#providers "Extend the app with additional services" )
2017-07-22 23:51:25 -04:00
[提供商 ](guide/ngmodule#providers "使用更多服务来扩展该应用" )
2017-03-11 10:36:40 -05:00
* [Imports ](guide/ngmodule#imports "Import components, directives, and pipes for use in component templates" )
2017-07-22 23:51:25 -04:00
[导入 ](guide/ngmodule#imports "为组件模板导入组件、指令和管道" )
2017-03-11 10:36:40 -05:00
* [Resolve conflicts ](guide/ngmodule#resolve-conflicts "When two directives have the same selector" )
2017-07-22 23:51:25 -04:00
[解决冲突 ](guide/ngmodule#resolve-conflicts "当两指令具有相同的选择器时……" )
2017-03-11 10:36:40 -05:00
* [Feature modules ](guide/ngmodule#feature-modules "Partition the app into feature modules" )
2017-07-22 23:51:25 -04:00
[特性模块 ](guide/ngmodule#feature-modules "把应用分割成一些特性模块" )
2017-04-27 18:32:46 -04:00
* [Lazy loaded modules with the router ](guide/ngmodule#lazy-load "Load modules asynchronously" )
2017-07-22 23:51:25 -04:00
2017-07-29 12:03:22 -04:00
[用路由器惰性加载模块 ](guide/ngmodule#lazy-load "惰性加载模块" )
2017-07-22 23:51:25 -04:00
2017-03-11 10:36:40 -05:00
* [Shared modules ](guide/ngmodule#shared-module "Create modules for commonly used components, directives, and pipes" )
2017-07-22 23:51:25 -04:00
[共享模块 ](guide/ngmodule#shared-module "为公用的组件、指令和管道创建模块" )
2017-03-11 10:36:40 -05:00
* [The Core module ](guide/ngmodule#core-module "Create a core module with app-wide singleton services and single-use components" )
2017-07-22 23:51:25 -04:00
[核心模块 ](guide/ngmodule#core-module "用应用级单例服务和一次性组件创建核心模块" )
2017-03-11 10:36:40 -05:00
* [Configure core services with _forRoot_ ](guide/ngmodule#core-for-root "Configure providers during module import" )
2017-07-22 23:51:25 -04:00
[用 _forRoot_ 配置核心服务 ](guide/ngmodule#core-for-root "在导入模块时配置提供商" )
2017-03-11 10:36:40 -05:00
* [Prevent reimport of the _CoreModule_ ](guide/ngmodule#prevent-reimport "because bad things happen if a lazy loaded module imports Core" )
2017-07-22 23:51:25 -04:00
[禁止重复导入 _CoreModule_ ](guide/ngmodule#prevent-reimport "如果惰性加载模块导入了核心模块,就会出问题" )
2017-04-30 16:10:32 -04:00
<!--
2017-03-11 10:36:40 -05:00
* [NgModule metadata properties ](guide/ngmodule#ngmodule-properties "A technical summary of the @NgModule metadata properties" )
2017-04-30 16:10:32 -04:00
CF: This link goes to the top of this page. I would expect it to go to an "NgModule metadata properties"
2017-03-06 05:43:33 -05:00
section at the end of this page, but that section doesn't exist. -->
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
[NgModule 元数据的属性 ](guide/ngmodule#ngmodule-properties "对@NgModule元数据属性的技术性总结" )
2017-05-08 23:47:34 -04:00
#### Live examples
2017-07-29 12:03:22 -04:00
#### 在线例子
2017-07-22 23:51:25 -04:00
This page explains NgModules through a progression of improvements to a sample with a "Tour of Heroes" theme. Here's an index to live examples at key moments in the evolution of the sample:
本章通过一个基于《英雄指南》的渐进式例子解释了 Angular 的模块。这里是例子演化过程中一些关键节点的在线例子。
2017-02-22 13:09:39 -05:00
* < live-example plnkr = "minimal.0" > A minimal NgModule app</ live-example >
2017-07-22 23:51:25 -04:00
< live-example plnkr = "minimal.0" > 最小的 NgModule 应用< / live-example >
2017-02-22 13:09:39 -05:00
* < live-example plnkr = "contact.1b" > The first contact module</ live-example >
2017-07-22 23:51:25 -04:00
< live-example plnkr = "contact.1b" > 第一个联系人模块< / live-example >
2017-02-22 13:09:39 -05:00
* < live-example plnkr = "contact.2" > The revised contact module</ live-example >
2017-07-22 23:51:25 -04:00
< live-example plnkr = "contact.2" > 修改过的联系人模块< / live-example >
2017-03-31 19:57:13 -04:00
* < live-example plnkr = "pre-shared.3" > Just before adding SharedModule</ live-example >
2017-07-22 23:51:25 -04:00
< live-example plnkr = "pre-shared.3" > 添加 _SharedModule_ 之前</ live-example >
2017-02-22 13:09:39 -05:00
* < live-example > The final version</ live-example >
2017-07-22 23:51:25 -04:00
< live-example > 最终版< / live-example >
2017-05-08 23:47:34 -04:00
#### Frequently asked questions (FAQs)
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
### 常见问题
2017-03-06 05:43:33 -05:00
This page covers NgModule concepts in a tutorial fashion.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
本章涵盖了英雄指南下的 Angular 模块概念。
2017-04-30 16:10:32 -04:00
The companion [NgModule FAQs ](guide/ngmodule-faq "NgModule FAQs" ) guide
2017-03-06 05:43:33 -05:00
offers answers to specific design and implementation questions.
Read this page before reading those FAQs.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
烹饪宝典中的 [Angular 模块常见问题 ](cookbook/ngmodule-faq "Angular 模块常见问题" )为一些与设计和实现有关的问题提供了答案。
不过在阅读常见问题之前,要先阅读本章。
2017-03-30 15:04:18 -04:00
2017-04-10 11:51:13 -04:00
< hr / >
2017-02-22 13:09:39 -05:00
{@a angular-modularity}
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
## Angular modularity
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
## Angular 模块化
2017-03-06 05:43:33 -05:00
Modules are a great way to organize an application and extend it with capabilities from external libraries.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
模块是组织应用和使用外部库扩展应用的最佳途径。
2017-03-06 05:43:33 -05:00
Many Angular libraries are modules (such as `FormsModule` , `HttpModule` , and `RouterModule` ).
Many third-party libraries are available as NgModules (such as
2017-04-24 14:23:45 -04:00
< a href = "https://material.angular.io/" > Material Design< / a > ,
< a href = "http://ionicframework.com/" > Ionic< / a > ,
< a href = "https://github.com/angular/angularfire2" > AngularFire2< / a > ).
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
很多 Angular 库都是模块,例如:`FormsModule`、`HttpModule`、`RouterModule`。
很多第三方库也封装成了 Angular 模块,例如:< a href = "https://material.angular.io/" target = "_blank" > Material Design< / a > 、
< a href = "http://ionicframework.com/" target = "_blank" > Ionic< / a > 、
< a href = "https://github.com/angular/angularfire2" target = "_blank" > AngularFire2< / a > 。
2017-03-06 05:43:33 -05:00
NgModules consolidate components, directives, and pipes into
2017-02-22 13:09:39 -05:00
cohesive blocks of functionality, each focused on a
feature area, application business domain, workflow, or common collection of utilities.
2017-07-22 23:51:25 -04:00
Angular 模块把组件、指令和管道打包成内聚的功能块,每个模块聚焦于一个特性区域、业务领域、工作流或通用工具。
2017-02-22 13:09:39 -05:00
Modules can also add services to the application.
2017-03-06 05:43:33 -05:00
Such services might be internally developed, such as the application logger.
Services can come from outside sources, such as the Angular router and Http client.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
模块还能用来把服务加到应用程序中。这些服务可能是内部研发的,例如应用日志服务;
也可能是外部资源,例如 Angular 路由和 Http 客户端。
2017-02-22 13:09:39 -05:00
Modules can be loaded eagerly when the application starts.
They can also be _lazy loaded_ asynchronously by the router.
2017-07-22 23:51:25 -04:00
模块可能在应用启动时主动加载, 也可能由路由器进行异步_惰性加载_。
2017-03-06 05:43:33 -05:00
An NgModule is a class decorated with `@NgModule` metadata. The metadata do the following:
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
Angular 模块是一个由`@NgModule`装饰器提供元数据的类,元数据包括:
2017-03-06 05:43:33 -05:00
* Declare which components, directives, and pipes belong to the module.
2017-07-22 23:51:25 -04:00
声明哪些组件、指令、管道_属于_该模块。
2017-03-06 05:43:33 -05:00
* Make some of those classes public so that other component templates can use them.
2017-07-22 23:51:25 -04:00
公开某些类,以便其它的组件模板可以使用它们。
2017-03-06 05:43:33 -05:00
* Import other modules with the components, directives, and pipes needed by the components in _this_ module.
2017-07-22 23:51:25 -04:00
导入其它模块, 从其它模块中获得_本_模块所需的组件、指令和管道。
2017-03-06 05:43:33 -05:00
* Provide services at the application level that any application component can use.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
在应用程序级提供服务,以便应用中的任何组件都能使用它。
2017-02-22 13:09:39 -05:00
Every Angular app has at least one module class, the _root module_ .
2017-03-06 05:43:33 -05:00
You bootstrap that module to launch the application.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
每个 Angular 应用至少有一个模块类 —— _根模块_ ,我们将通过引导根模块来启动应用。
2017-03-06 05:43:33 -05:00
The root module is all you need in a simple application with a few components.
As the app grows, you refactor the root module into *feature modules*
2017-02-22 13:09:39 -05:00
that represent collections of related functionality.
2017-03-06 05:43:33 -05:00
You then import these modules into the root module.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
对于组件很少的简单应用来说, 只用一个_根模块_就足够了。
随着应用规模的增长, 我们逐步从_根模块_中重构出一些**特性模块**,来代表一组相关功能的集合。
然后, 我们在_根模块_中导入它们。
2017-03-06 05:43:33 -05:00
Later in this page, you'll read about this process. For now, you'll start with the root module.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
稍后我们就会看到怎么做。不过还是先从_根模块_开始吧!
2017-02-22 13:09:39 -05:00
{@a root-module}
2017-03-31 19:57:13 -04:00
2017-05-08 23:47:34 -04:00
## The root _AppModule_
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
## _AppModule_ - 应用的根模块
2017-03-06 05:43:33 -05:00
Every Angular app has a *root module* class.
By convention, the *root module* class is called `AppModule` and it exists in a file named `app.module.ts` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
每个 Angular 应用都有一个**根模块**类。
按照约定,它的类名叫做`AppModule`,被放在`app.module.ts`文件中。
2017-03-11 10:36:40 -05:00
The `AppModule` from the QuickStart seed on the [Setup ](guide/setup ) page is as minimal as possible:
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
[快速起步种子库 ](guide/setup )中的`AppModule`是能找到的最小版本:
2017-03-31 19:57:13 -04:00
< code-example path = "setup/src/app/app.module.ts" title = "src/app/app.module.ts (minimal)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
The `@NgModule` decorator defines the metadata for the module.
2017-03-06 05:43:33 -05:00
This page takes an intuitive approach to understanding the metadata and fills in details as it progresses.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`@NgModule` 装饰器用来为模块定义元数据。
我们先凭直觉来理解一下元数据,接下来再逐步深入细节。
2017-03-06 05:43:33 -05:00
The metadata imports a single helper module, `BrowserModule` , which every browser app must import.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
这个元数据只导入了一个辅助模块,`BrowserModule`,每个运行在浏览器中的应用都必须导入它。
2017-02-22 13:09:39 -05:00
`BrowserModule` registers critical application service providers.
2017-03-06 05:43:33 -05:00
It also includes common directives like `NgIf` and `NgFor` , which become immediately visible and usable
in any of this module's component templates.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`BrowserModule` 注册了一些关键的应用服务提供商。
它还包括了一些通用的指令,例如`NgIf`和`NgFor`,所以这些指令在该模块的任何组件模板中都是可用的。
2017-02-22 13:09:39 -05:00
The `declarations` list identifies the application's only component,
2017-03-06 05:43:33 -05:00
the _root component_ , the top of the app's rather bare component tree.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`declarations` 列出了该应用程序中唯一的组件( _根组件_) , 它是应用的光秃秃的组件树的根。
2017-02-22 13:09:39 -05:00
The example `AppComponent` simply displays a data-bound title:
2017-07-22 23:51:25 -04:00
下面范例`AppComponent`显示被绑定的标题:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.component.0.ts" title = "src/app/app.component.ts (minimal)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
Lastly, the `@NgModule.bootstrap` property identifies this `AppComponent` as the _bootstrap component_ .
When Angular launches the app, it places the HTML rendering of `AppComponent` in the DOM,
2017-03-06 05:43:33 -05:00
inside the `<my-app>` element tags of the `index.html` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
最后,`@NgModule.bootstrap`属性把这个`AppComponent`标记为_引导 (bootstrap) 组件_。
当 Angular 引导应用时,它会在 DOM 中渲染`AppComponent`,并把结果放进`index.html`的`< my-app > `元素标记内部。
2017-02-22 13:09:39 -05:00
{@a bootstrap}
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
## Bootstrapping in _main.ts_
2017-07-22 23:51:25 -04:00
## 在 _main.ts_ 中引导
2017-03-06 05:43:33 -05:00
You launch the application by bootstrapping the `AppModule` in the `main.ts` file.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
在`main.ts`文件中,我们通过引导`AppModule`来启动应用。
2017-03-06 05:43:33 -05:00
Angular offers a variety of bootstrapping options targeting multiple platforms.
This page describes two options, both targeting the browser.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
针对不同的平台, Angular 提供了很多引导选项。
本章我们只讲两个选项,都是针对浏览器平台的。
2017-05-08 23:47:34 -04:00
### Compile just-in-time (JIT)
2017-07-22 23:51:25 -04:00
2017-07-29 12:03:22 -04:00
### 即时 (JiT) 编译
2017-04-30 16:10:32 -04:00
In the first, _dynamic_ option, the [Angular compiler ](guide/ngmodule-faq#q-angular-compiler "About the Angular Compiler" )
2017-02-22 13:09:39 -05:00
compiles the application in the browser and then launches the app.
2017-07-29 12:03:22 -04:00
先看看_动态_选项, [Angular 编译器](guide/ngmodule-faq#q-angular-compiler "关于 Angular 编译器")在浏览器中编译并引导该应用。
2017-07-22 23:51:25 -04:00
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/main.ts" title = "src/main.ts (dynamic)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
The samples in this page demonstrate the dynamic bootstrapping approach.
2017-07-22 23:51:25 -04:00
这里的例子演示进行动态引导的方法。
2017-04-26 08:12:22 -04:00
< live-example embedded plnkr = "minimal.0" img = "guide/ngmodule/minimal-plunker.png" > Try the live example.< / live-example >
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
< live-example embedded plnkr = "minimal.0" img = "devguide/ngmodule/minimal-plunker.png" > 试试在线例子。< / live-example >
2017-02-22 13:09:39 -05:00
2017-05-08 23:47:34 -04:00
### Compile ahead-of-time (AOT)
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
### 使用预编译器 (AoT - Ahead-Of-Time) 进行静态引导
2017-02-22 13:09:39 -05:00
Consider the static alternative which can produce a much smaller application that
launches faster, especially on mobile devices and high latency networks.
2017-07-22 23:51:25 -04:00
静态方案可以生成更小、启动更快的应用,建议优先使用它,特别是在移动设备或高延迟网络下。
2017-03-06 05:43:33 -05:00
In the _static_ option, the Angular compiler runs ahead of time as part of the build process,
2017-02-22 13:09:39 -05:00
producing a collection of class factories in their own files.
Among them is the `AppModuleNgFactory` .
2017-07-22 23:51:25 -04:00
使用_静态_选项, Angular 编译器作为构建流程的一部分提前运行,生成一组类工厂。它们的核心就是`AppModuleNgFactory`。
2017-02-22 13:09:39 -05:00
The syntax for bootstrapping the pre-compiled `AppModuleNgFactory` is similar to
the dynamic version that bootstraps the `AppModule` class.
2017-07-22 23:51:25 -04:00
引导预编译的`AppModuleNgFactory`的语法和动态引导`AppModule`类的方式很相似。
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/main-static.ts" title = "src/main.ts (static)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
Because the entire application was pre-compiled,
2017-03-06 05:43:33 -05:00
Angular doesn't ship the Angular compiler to the browser and doesn't compile in the browser.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
由于整个应用都是预编译的,所以我们不用把 _Angular 编译器_一起发到浏览器中, 也不用在浏览器中进行编译。
2017-02-22 13:09:39 -05:00
The application code downloaded to the browser is much smaller than the dynamic equivalent
2017-03-06 05:43:33 -05:00
and it's ready to execute immediately. The performance boost can be significant.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
下载到浏览器中的应用代码比动态版本要小得多,并且能立即执行。引导的性能可以得到显著提升。
2017-02-22 13:09:39 -05:00
Both the JIT and AOT compilers generate an `AppModuleNgFactory` class from the same `AppModule`
source code.
The JIT compiler creates that factory class on the fly, in memory, in the browser.
The AOT compiler outputs the factory to a physical file
2017-03-06 05:43:33 -05:00
that is imported here in the static version of `main.ts` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
无论是 JiT 还是 AoT 编译器都会从同一份`AppModule`源码中生成一个`AppModuleNgFactory`类。
JiT 编译器动态地在浏览器的内存中创建这个工厂类。
AoT 编译器把工厂输出成一个物理文件,也就是我们在静态版本`main.ts`中导入的那个。
2017-02-22 13:09:39 -05:00
In general, the `AppModule` should neither know nor care how it is bootstrapped.
2017-07-22 23:51:25 -04:00
通常,`AppModule`不必关心它是如何被引导的。
2017-02-22 13:09:39 -05:00
Although the `AppModule` evolves as the app grows, the bootstrap code in `main.ts` doesn't change.
2017-03-06 05:43:33 -05:00
This is the last time you'll look at `main.ts` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
虽然`AppModule`会随着应用而演化,但是`main.ts`中的引导代码不会变。
这将是我们最后一次关注`main.ts`了。
2017-03-30 15:04:18 -04:00
2017-04-10 11:51:13 -04:00
< hr / >
2017-02-22 13:09:39 -05:00
{@a declarations}
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
## Declare directives and components
2017-07-22 23:51:25 -04:00
## 声明指令和组件
2017-03-06 05:43:33 -05:00
As the app evolves,
2017-03-11 10:36:40 -05:00
the first addition is a `HighlightDirective` , an [attribute directive ](guide/attribute-directives )
2017-02-22 13:09:39 -05:00
that sets the background color of the attached element.
2017-07-22 23:51:25 -04:00
应用继续演进。
首先加入的是`HighlightDirective`,一个[属性型指令](guide/attribute-directives),它会设置所在元素的背景色。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/highlight.directive.ts" title = "src/app/highlight.directive.ts" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Update the `AppComponent` template to attach the directive to the title:
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
我们更新`AppComponent`的模板,来把该指令附加到标题上:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.component.1.ts" region = "template" title = "src/app/app.component.ts" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
If you ran the app now, Angular wouldn't recognize the `highlight` attribute and would ignore it.
You must declare the directive in `AppModule` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
如果我们现在就运行该应用, Angular 将无法识别`highlight`属性,并且忽略它。
我们必须在`AppModule`中声明该指令。
2017-02-22 13:09:39 -05:00
Import the `HighlightDirective` class and add it to the module's `declarations` like this:
2017-07-22 23:51:25 -04:00
导入`HighlightDirective`类,并把它加入该模块的`declarations`数组中,就像这样:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.module.1.ts" region = "directive" title = "src/app/app.module.ts" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-06 05:43:33 -05:00
Refactor the title into its own `TitleComponent` .
2017-02-22 13:09:39 -05:00
The component's template binds to the component's `title` and `subtitle` properties like this:
2017-07-22 23:51:25 -04:00
接着把标题重构到独立的`TitleComponent`中。
该组件的模板绑定到了组件的`title`和`subtitle`属性中,就像这样:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/title.component.html" region = "v1" title = "src/app/title.component.html" linenums = "false" >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/title.component.ts" region = "v1" title = "src/app/title.component.ts" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Rewrite the `AppComponent` to display the new `TitleComponent` in the `<app-title>` element,
2017-02-22 13:09:39 -05:00
using an input binding to set the `subtitle` .
2017-07-22 23:51:25 -04:00
我们重写了`AppComponent`来把这个新的`TitleComponent`显示到`< app-title > `元素中,并使用一个输入型绑定来设置`subtitle`。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.component.1.ts" title = "src/app/app.component.ts (v1)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Angular won't recognize the `<app-title>` tag until you declare it in `AppModule` .
2017-02-22 13:09:39 -05:00
Import the `TitleComponent` class and add it to the module's `declarations` :
2017-07-22 23:51:25 -04:00
除非我们在`AppModule`中声明过,否则 Angular 无法识别`< app-title > `标签。
导入`TitleComponent`类,并把它加到模块的`declarations`中:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.module.1.ts" region = "component" title = "src/app/app.module.ts" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
{@a providers}
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
## Service providers
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
## 服务提供商
2017-02-22 13:09:39 -05:00
Modules are a great way to provide services for all of the module's components.
2017-07-22 23:51:25 -04:00
模块是为模块中的所有组件提供服务的最佳途径。
2017-03-11 10:36:40 -05:00
The [Dependency Injection ](guide/dependency-injection ) page describes
2017-03-06 05:43:33 -05:00
the Angular hierarchical dependency-injection system and how to configure that system
2017-03-31 19:57:13 -04:00
with [providers ](guide/dependency-injection#providers ) at different levels of the
2017-02-22 13:09:39 -05:00
application's component tree.
2017-07-22 23:51:25 -04:00
[依赖注入 ](guide/dependency-injection )一章中讲过 Angular 的层次化依赖注入系统,
以及如何在组件树的不同层次上通过[提供商](guide/dependency-injection#providers)配置该系统。
2017-02-22 13:09:39 -05:00
A module can add providers to the application's root dependency injector, making those services
available everywhere in the application.
2017-07-22 23:51:25 -04:00
模块可以往应用的“根依赖注入器”中添加提供商,让那些服务在应用中到处可用。
2017-02-22 13:09:39 -05:00
Many applications capture information about the currently logged-in user and make that information
accessible through a user service.
This sample application has a dummy implementation of such a `UserService` .
2017-07-22 23:51:25 -04:00
很多应用都需要获取当前登录的用户的信息,并且通过一个用户服务来访问它们。
该范例中有一个`UserService`的伪实现。
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/user.service.ts" title = "src/app/user.service.ts" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
The sample application should display a welcome message to the logged-in user just below the application title.
2017-02-22 13:09:39 -05:00
Update the `TitleComponent` template to show the welcome message below the application title.
2017-07-22 23:51:25 -04:00
该范例应用会在标题下方为已登录用户显示一条欢迎信息。
更新`TitleComponent`的模板来显示它。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/title.component.html" title = "src/app/title.component.html" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
Update the `TitleComponent` class with a constructor that injects the `UserService`
and sets the component's `user` property from the service.
2017-07-22 23:51:25 -04:00
更新`TitleComponent`,为它加入一个构造函数,注入`UserService`类,并把组件的`user`属性设置为它的实例。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/title.component.ts" title = "src/app/title.component.ts" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
You've defined and used the service. Now to _provide_ it for all components to use,
add it to a `providers` property in the `AppModule` metadata:
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
我们已经_定义_并_使用了_该服务。现在, 我们通过把它加入`AppModule`元数据的`providers`属性中, 来把它_提供_给所有组件使用。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.module.1.ts" region = "providers" title = "src/app/app.module.ts (providers)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
{@a imports}
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
## Import supporting modules
2017-07-22 23:51:25 -04:00
## 导入支持性模块
2017-03-06 05:43:33 -05:00
In the revised `TitleComponent` , an `*ngIf` directive guards the message.
2017-02-22 13:09:39 -05:00
There is no message if there is no user.
2017-07-22 23:51:25 -04:00
注意,在修改过的`TitleComponent`中,有一个`*ngIf`指令在“守卫着”该消息。如果没有当前用户,就没有任何消息。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/title.component.html" region = "ngIf" title = "src/app/title.component.html (ngIf)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
Although `AppModule` doesn't declare `NgIf` , the application still compiles and runs.
How can that be? The Angular compiler should either ignore or complain about unrecognized HTML.
2017-07-22 23:51:25 -04:00
虽然`AppModule`没有声明过`NgIf`指令, 但该应用仍然能正常编译和运行。为什么这样没问题呢? Angular 的编译器遇到不认识的 HTML 时应该不是忽略就是报错才对。
2017-03-06 05:43:33 -05:00
Angular does recognize `NgIf` because you imported it earlier.
2017-02-22 13:09:39 -05:00
The initial version of `AppModule` imports `BrowserModule` .
2017-07-22 23:51:25 -04:00
Angular 能识别`NgIf`指令,是因为我们以前导入过它。最初版本的`AppModule`就导入了`BrowserModule`。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.module.0.ts" region = "imports" title = "src/app/app.module.ts (imports)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Importing `BrowserModule` made all of its public components, directives, and pipes visible
to the component templates in `AppModule` .
2017-03-27 11:08:53 -04:00
2017-07-22 23:51:25 -04:00
导入`BrowserModule`会让该模块公开的所有组件、指令和管道在`AppModule`下的任何组件模板中可用。
2017-04-10 11:51:13 -04:00
< div class = "l-sub-section" >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
More accurately, `NgIf` is declared in `CommonModule` from `@angular/common` .
2017-07-22 23:51:25 -04:00
更准确的说,`NgIf`是在来自`@angular/common`的`CommonModule`中声明的。
2017-03-06 05:43:33 -05:00
`CommonModule` contributes many of the common directives that applications need, including `ngIf` and `ngFor` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`CommonModule` 提供了很多应用程序中常用的指令,包括`NgIf`和`NgFor`等。
2017-04-30 16:10:32 -04:00
`BrowserModule` imports `CommonModule` and [re-exports ](guide/ngmodule-faq#q-re-export ) it.
2017-03-27 11:08:53 -04:00
The net effect is that an importer of `BrowserModule` gets `CommonModule` directives automatically.
2017-07-22 23:51:25 -04:00
`BrowserModule` 导入了`CommonModule`并且[_重新导出_](cookbook/ngmodule-faq#q-re-export)了它。
最终的效果是:只要导入`BrowserModule`就自动获得了`CommonModule`中的指令。
2017-04-10 11:51:13 -04:00
< / div >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-03-27 11:08:53 -04:00
Many familiar Angular directives don't belong to `CommonModule` .
2017-02-22 13:09:39 -05:00
For example, `NgModel` and `RouterLink` belong to Angular's `FormsModule` and `RouterModule` respectively.
2017-03-06 05:43:33 -05:00
You must import those modules before you can use their directives.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
很多熟悉的 Angular 指令并不属于`CommonModule`。
例如,`NgModel`和`RouterLink`分别属于 Angular 的`FormsModule`模块和`RouterModule`模块。
在使用那些指令之前, 我们也必须_导入_那些模块。
2017-03-06 05:43:33 -05:00
To illustrate this point, you'll extend the sample app with `ContactComponent` ,
2017-02-22 13:09:39 -05:00
a form component that imports form support from the Angular `FormsModule` .
2017-07-22 23:51:25 -04:00
要解释这一点,我们可以再加入`ContactComponent`组件,它是一个表单组件,从 Angular 的`FormsModule`中导入了表单支持。
2017-05-08 23:47:34 -04:00
< h3 class = "no-toc" > Add the _ContactComponent_ </ h3 >
2017-02-22 13:09:39 -05:00
2017-07-29 12:03:22 -04:00
< h3 class = "no-toc" > 添加 _ContactComponent_ </ h3 >
2017-07-22 23:51:25 -04:00
2017-03-11 10:36:40 -05:00
[Angular forms ](guide/forms ) are a great way to manage user data entry.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
[Angular 表单 ](guide/forms )是用来管理用户数据输入的最佳方式之一。
2017-03-06 05:43:33 -05:00
The `ContactComponent` presents a "contact editor,"
2017-03-31 19:57:13 -04:00
implemented with Angular forms in the [template-driven form ](guide/forms#template-driven ) style.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`ContactComponnet` 组件展现“联系人编辑器”,它是用[_模板驱动式表单_](guide/forms)实现的。
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< div class = "l-sub-section" >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-05-08 23:47:34 -04:00
< h3 class = "no-toc" > Angular form styles< / h3 >
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
### Angular 表单的风格
2017-03-06 05:43:33 -05:00
You can write Angular form components in
template-driven or
2017-04-30 16:10:32 -04:00
[reactive ](guide/dynamic-form ) style.
2017-03-31 07:23:16 -04:00
<!-- CF: this link goes to a page titled "Dynamic Forms". Should the link text be "dynamic" instead of "reactive"? -->
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
我们写 Angular 表单组件时,可以使用[_模板驱动式表单_](guide/forms),
也可以使用[_响应式表单_](cookbook/dynamic-form)。
2017-03-06 05:43:33 -05:00
The following sample imports the `FormsModule` from `@angular/forms` because
the `ContactComponent` is written in _template-driven_ style.
Modules with components written in the _reactive_ style
import the `ReactiveFormsModule` .
2017-03-27 11:08:53 -04:00
2017-07-22 23:51:25 -04:00
该例子中从`@angular/forms`中导入了`FormsModule`,这是因为`ContactComponent`组件用的是_模板驱动式表单_。
那些带有_响应式表单_组件的模块, 应该转而导入`ReactiveFormsModule`。
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< / div >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
The `ContactComponent` selector matches an element named `<app-contact>` .
2017-03-06 05:43:33 -05:00
Add an element with that name to the `AppComponent` template, just below the `<app-title>` :
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`ContactComponent` 的选择器会去匹配名叫`< app-contact > `的元素。
在`AppComponent`模板中`< app-title > `的下方添加一个具有此名字的元素:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.component.1b.ts" region = "template" title = "src/app/app.component.ts (template)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Form components are often complex. The `ContactComponent` has its own `ContactService`
2017-03-31 19:57:13 -04:00
and [custom pipe ](guide/pipes#custom-pipes ) (called `Awesome` ),
2017-02-22 13:09:39 -05:00
and an alternative version of the `HighlightDirective` .
2017-07-22 23:51:25 -04:00
`ContactComponent` 还有很多事要做。
表单组件通常都是很复杂的。本组件具有它自己的`ContactService`和[自定义管道](guide/ngmodule#pipes.html) `Awesome` ,
以及`HighlightDirective`的另一个版本。
2017-03-06 05:43:33 -05:00
To make it manageable, place all contact-related material in an `src/app/contact` folder
2017-02-22 13:09:39 -05:00
and break the component into three constituent HTML, TypeScript, and css files:
2017-07-22 23:51:25 -04:00
为了方便管理,我们把所有与联系人相关的编程元素都放进`src/app/contact`目录,
并把该组件分解成三个基本成分: HTML、TypeScript 和 CSS 文件:
2017-03-27 11:08:53 -04:00
< code-tabs >
< code-pane title = "src/app/contact/contact.component.html" path = "ngmodule/src/app/contact/contact.component.html" >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-pane >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< code-pane title = "src/app/contact/contact.component.ts" path = "ngmodule/src/app/contact/contact.component.3.ts" >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-pane >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< code-pane title = "src/app/contact/contact.component.css" path = "ngmodule/src/app/contact/contact.component.css" >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-pane >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< code-pane title = "src/app/contact/contact.service.ts" path = "ngmodule/src/app/contact/contact.service.ts" >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-pane >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< code-pane title = "src/app/contact/awesome.pipe.ts" path = "ngmodule/src/app/contact/awesome.pipe.ts" >
< / code-pane >
< code-pane title = "src/app/contact/highlight.directive.ts" path = "ngmodule/src/app/contact/highlight.directive.ts" >
< / code-pane >
< / code-tabs >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
In the middle of the component template,
notice the two-way data binding `[(ngModel)]` .
2017-02-22 13:09:39 -05:00
`ngModel` is the selector for the `NgModel` directive.
2017-07-22 23:51:25 -04:00
先来看组件模板。
注意模板中部的双向数据绑定`[(ngModel)]`。
`ngModel` 是`NgModel`指令的选择器。
2017-03-06 05:43:33 -05:00
Although `NgModel` is an Angular directive, the _Angular compiler_ won't recognize it for the following reasons:
2017-03-31 19:57:13 -04:00
2017-07-22 23:51:25 -04:00
虽然`NgModel`是 Angular 指令,但 _Angular 编译器_并不会识别它, 因为:
2017-03-06 05:43:33 -05:00
* `AppModule` doesn't declare `NgModel` .
2017-07-22 23:51:25 -04:00
`AppModule` 没有声明过这个`NgModel`。
2017-03-06 05:43:33 -05:00
* `NgModel` wasn't imported via `BrowserModule` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`NgModel` 也没有通过`BrowserModule`被导入过。
2017-03-06 05:43:33 -05:00
Even if Angular somehow recognized `ngModel` ,
`ContactComponent` wouldn't behave like an Angular form because
form features such as validation aren't yet available.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
退一步说,即使 Angular 有办法识别`ngModel`, `ContactComponent`也不会表现的像 Angular 表单,
因为本组件表单的表单相关的特性(例如有效性验证)还不可用。
2017-05-08 23:47:34 -04:00
< h3 class = "no-toc" > Import the FormsModule< / h3 >
2017-02-22 13:09:39 -05:00
2017-07-29 12:03:22 -04:00
< h3 class = "no-toc" > 导入 FormsModule< / h3 >
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
### 导入`FormsModule`
2017-02-22 13:09:39 -05:00
Add the `FormsModule` to the `AppModule` metadata's `imports` list.
2017-07-22 23:51:25 -04:00
把`FormsModule`加到`AppModule`元数据中的`imports`列表中:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.module.1.ts" region = "imports" title = "src/app/app.module.ts" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Now `[(ngModel)]` binding will work and the user input will be validated by Angular forms,
once you declare the new component, pipe, and directive.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
一旦我们声明了这些新组件、管道和指令,`[(ngModel)]`绑定就会正常工作,用户的输入也能被 Angular 表单验证了。
2017-02-22 13:09:39 -05:00
2017-04-10 11:51:13 -04:00
< div class = "alert is-critical" >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-31 07:23:16 -04:00
*Do not* add `NgModel` — or the `FORMS_DIRECTIVES` — to
2017-03-06 05:43:33 -05:00
the `AppModule` metadata's declarations.
2017-02-22 13:09:39 -05:00
These directives belong to the `FormsModule` .
2017-07-22 23:51:25 -04:00
**不要**把`NgModel`(或`FORMS_DIRECTIVES) 加到`AppModule`元数据的`declarations`数据中!这些指令属于`FormsModule`。
2017-03-06 05:43:33 -05:00
Components, directives, and pipes belong to _one module only_ .
2017-07-22 23:51:25 -04:00
组件、指令和管道_只能_属于一个模块。
2017-03-06 05:43:33 -05:00
*Never re-declare classes that belong to another module.*
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
**永远不要再次声明属于其它模块的类。**
2017-02-22 13:09:39 -05:00
2017-04-10 11:51:13 -04:00
< / div >
2017-02-22 13:09:39 -05:00
{@a declare-pipe}
2017-03-31 19:57:13 -04:00
2017-05-08 23:47:34 -04:00
< h3 class = "no-toc" > Declare the contact component, directive, and pipe< / h3 >
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
### 声明联系人的组件、指令和管道
2017-03-06 05:43:33 -05:00
The application won't compile until you declare the contact component, directive, and pipe.
2017-02-22 13:09:39 -05:00
Update the `declarations` in the `AppModule` accordingly:
2017-07-22 23:51:25 -04:00
如果我们没有声明该联系人模块的组件、指令和管道,该应用就会失败。
更新`AppModule`中的`declarations`元数据,就像这样:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.module.1.ts" region = "declarations" title = "src/app/app.module.ts (declarations)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
{@a import-name-conflict}
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< div class = "l-sub-section" >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
There are two directives with the same name, both called `HighlightDirective` .
2017-07-22 23:51:25 -04:00
如果有两个同名指令,都叫做`HighlightDirective`,该怎么办呢?
2017-03-06 05:43:33 -05:00
To work around this, create an alias for the contact version using the `as` JavaScript import keyword.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
我们只要在 import 时使用`as`关键字来为第二个指令创建个别名就可以了。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.module.1b.ts" region = "import-alias" title = "src/app/app.module.1b.ts" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
This solves the immediate issue of referencing both directive _types_ in the same file but
2017-03-31 07:23:16 -04:00
leaves another issue unresolved.
2017-03-11 10:36:40 -05:00
You'll learn more about that issue later in this page, in [Resolve directive conflicts ](guide/ngmodule#resolve-conflicts ).
2017-03-27 11:08:53 -04:00
2017-07-22 23:51:25 -04:00
这解决了在文件中使用指令_类型_时的冲突问题, 但是还有另一个问题没有解决, 我们将在[后面](guide/ngmodule#resolve-conflicts)讨论它。
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< / div >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-05-08 23:47:34 -04:00
< h3 class = "no-toc" > Provide the _ContactService_ </ h3 >
2017-07-22 23:51:25 -04:00
2017-07-29 12:03:22 -04:00
< h3 class = "no-toc" > 提供 _ContactService_ </ h3 >
2017-07-22 23:51:25 -04:00
2017-03-06 05:43:33 -05:00
The `ContactComponent` displays contacts retrieved by the `ContactService` ,
2017-02-22 13:09:39 -05:00
which Angular injects into its constructor.
2017-07-22 23:51:25 -04:00
`ContactComponent` 显示从`ContactService`服务中获取的联系人信息,该服务是被 Angular 注入到组件的构造函数中的。
2017-03-06 05:43:33 -05:00
You have to provide that service somewhere.
The `ContactComponent` could provide it,
but then the service would be scoped to this component only.
You want to share this service with other contact-related components that you'll surely add later.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
我们必须在某个地方提供该服务。
在`ContactComponent`中_可以_提供它。
但是那样一来, 它的作用范围就会_仅_局限于该组件及其子组件。
而我们希望让该服务与其它和联系人有关的组件中共享,稍后我们就会添加那些组件。
2017-03-06 05:43:33 -05:00
In this app, add `ContactService` to the `AppModule` metadata's `providers` list:
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
在此应用中,我们选择把`ContactSerivce`添加到`AppModule`元数据的`providers`列表中:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.module.1b.ts" region = "providers" title = "src/app/app.module.ts (providers)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Now you can inject `ContactService` (like `UserService` ) into any component in the application.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
现在,`ContactService`服务就能被注入进该应用中的任何组件了,就像`UserService`一样。
2017-02-22 13:09:39 -05:00
{@a application-scoped-providers}
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< div class = "l-sub-section" >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-05-08 23:47:34 -04:00
< h3 class = "no-toc" > Application-scoped providers< / h3 >
2017-07-22 23:51:25 -04:00
2017-07-29 12:03:22 -04:00
< h3 class = "no-toc" > 全应用范围的提供商< / h3 >
2017-07-22 23:51:25 -04:00
2017-02-22 13:09:39 -05:00
The `ContactService` provider is _application_ -scoped because Angular
2017-03-06 05:43:33 -05:00
registers a module's `providers` with the application's *root injector* .
2017-07-22 23:51:25 -04:00
`ContactService` 的提供商是_全应用_范围的, 这是因为 Angular 使用该应用的**根注入器**注册模块的`providers`。
Architecturally, the `ContactService` belongs to the Contact business domain.
Classes in other domains don't need the `ContactService` and shouldn't inject it.
从架构上看,`ContactService`属于“联系人”这个业务领域。
_其它_领域中的类并不需要知道`ContactService`,也不会要求注入它。
You might expect Angular to offer a _module_ -scoping mechanism to enforce this design.
It doesn't. NgModule instances, unlike components, don't have their own injectors
so they can't have their own provider scopes.
我们可能会期待 Angular 提供一种_模块_范围内的机制来保障此设计。
但它没有。与组件不同, Angular的 模块实例并没有它们自己的注入器,所以它们也没有自己的供应商范围。
This omission is intentional.
NgModules are designed primarily to extend an application,
to enrich the entire app with the module's capabilities.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
Angular是故意这么设计的。
Angular的模块设计, 主要目的是扩展应用程序, 丰富其模块化能力。
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
In practice, service scoping is rarely an issue.
Non-contact components can't accidentally inject the `ContactService` .
To inject `ContactService` , you must first import its _type_ .
Only Contact components should import the `ContactService` type.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
在实践中,服务的范围很少会成为问题。
联系人之外的组件不会意外注入`ContactService`服务。
要想注入`ContactService`, 你得先导入它的_类型_。
而只有联系人组件才会导入`ContactService`_类型_。
2017-02-22 13:09:39 -05:00
2017-07-29 12:03:22 -04:00
Read more in the [How do I restrict service scope to a module? ](guide/ngmodule-faq#q-component-scoped-providers ) section
of the [NgModule FAQs ](guide/ngmodule-faq ) page.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
在[NgModule常见问题](cookbook/ngmodule-faq)页的[如何把服务的范围限制在一个模块中](cookbook/ngmodule-faq#q-component-scoped-providers)一节中可以了解更多。
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< / div >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-05-08 23:47:34 -04:00
< h3 class = "no-toc" > Run the app< / h3 >
2017-07-22 23:51:25 -04:00
2017-07-29 12:03:22 -04:00
< h3 class = "no-toc" > 运行该应用< / h3 >
2017-07-22 23:51:25 -04:00
2017-03-06 05:43:33 -05:00
Everything is in place to run the application with its contact editor.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
一切就绪,可以运行该应用及其联系人编辑器了。
2017-02-22 13:09:39 -05:00
The app file structure looks like this:
2017-03-30 15:04:18 -04:00
2017-07-22 23:51:25 -04:00
应用的文件结构是这样的:
2017-04-11 16:44:52 -04:00
< div class = 'filetree' >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
app
2017-04-11 16:44:52 -04:00
< / div >
< div class = 'children' >
< div class = 'file' >
2017-02-22 13:09:39 -05:00
app.component.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
app.module.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
highlight.directive.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
title.component.(html|ts)
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
user.service.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
contact
2017-04-11 16:44:52 -04:00
< / div >
< div class = 'children' >
< div class = 'file' >
2017-02-22 13:09:39 -05:00
awesome.pipe.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
contact.component.(css|html|ts)
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
contact.service.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
highlight.directive.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
Try the example:
2017-07-29 12:03:22 -04:00
试试这个例子:< live-example embedded plnkr = "contact.1b" img = "guide/ngmodule/contact-1b-plunker.png" > < / live-example >
2017-02-22 13:09:39 -05:00
{@a resolve-conflicts}
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
## Resolve directive conflicts
2017-07-22 23:51:25 -04:00
## 解决指令冲突
2017-03-06 05:43:33 -05:00
<!-- CF: This section describes directive conflicts in detail, but doesn't describe how to resolve them.
2017-03-31 07:23:16 -04:00
This section seems like more of an introduction to the next section, "Feature modules".
2017-03-06 05:43:33 -05:00
Consider moving this section to be a child section of "Feature modules", or striking "Resolve" from this title. -->
2017-02-22 13:09:39 -05:00
2017-03-11 10:36:40 -05:00
An issue arose [earlier ](guide/ngmodule#import-name-conflict ) when you declared the contact's `HighlightDirective` because
2017-03-06 05:43:33 -05:00
you already had a `HighlightDirective` class at the application level.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
[以前 ](guide/ngmodule#import-name-conflict )我们在声明联系人的`HighlightDirective`指令时遇到了问题,因为在应用程序一级已经有了一个`HighlightDirective`类。
2017-03-06 05:43:33 -05:00
The selectors of the two directives both highlight the attached element with a different color.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
在查找它们的选择器时,它们都试图用不同的颜色来高亮所依附的元素。
2017-03-27 11:08:53 -04:00
< code-tabs >
< code-pane title = "src/app/highlight.directive.ts" path = "ngmodule/src/app/highlight.directive.ts" >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-pane >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< code-pane title = "src/app/contact/highlight.directive.ts" path = "ngmodule/src/app/contact/highlight.directive.ts" >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-pane >
< / code-tabs >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Both directives are declared in this module so both directives are active.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
Angular 会只用它们中的一个吗?不会。
所有指令都声明在该模块中, 所以_这两个指令都会被激活_。
2017-02-22 13:09:39 -05:00
When the two directives compete to color the same element,
2017-03-06 05:43:33 -05:00
the directive that's declared later wins because its DOM changes overwrite the first.
In this case, the contact's `HighlightDirective` makes the application title text blue
2017-02-22 13:09:39 -05:00
when it should stay gold.
2017-07-22 23:51:25 -04:00
当两个指令在同一个元素上争相设置颜色时,后声明的那个会胜出,因为它对 DOM 的修改覆盖了前一个。
在该例子中,联系人的`HighlightDirective`把应用标题的文本染成了蓝色,而我们原本期望它保持金色。
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< div class = "l-sub-section" >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
The issue is that two different classes are trying to do the same thing.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
真正的问题在于, 有_两个不同的类_试图做同一件事。
2017-03-06 05:43:33 -05:00
It's OK to import the same directive class multiple times.
2017-02-22 13:09:39 -05:00
Angular removes duplicate classes and only registers one of them.
2017-07-22 23:51:25 -04:00
多次导入_同一个_指令是没问题的, Angular 会移除重复的类,而只注册一次。
2017-03-06 05:43:33 -05:00
But from Angular's perspective, two different classes, defined in different files, that have the same name
are not duplicates. Angular keeps both directives and
2017-02-22 13:09:39 -05:00
they take turns modifying the same HTML element.
2017-03-27 11:08:53 -04:00
2017-07-22 23:51:25 -04:00
从 Angular 的角度看, 两个类并没有重复。Angular 会同时保留这两个指令,并让它们依次修改同一个 HTML 元素。
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< / div >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
At least the app still compiles.
2017-03-06 05:43:33 -05:00
If you define two different component classes with the same selector specifying the same element tag,
2017-02-22 13:09:39 -05:00
the compiler reports an error. It can't insert two components in the same DOM location.
2017-07-22 23:51:25 -04:00
至少,应用仍然编译通过了。
如果我们使用相同的选择器定义了两个不同的组件类,并指定了同一个元素标记,编译器就会报错说它无法在同一个 DOM 位置插入两个不同的组件。
2017-03-06 05:43:33 -05:00
To eliminate component and directive conflicts, create feature modules
2017-02-22 13:09:39 -05:00
that insulate the declarations in one module from the declarations in another.
2017-07-22 23:51:25 -04:00
我们可以通过创建特性模块来消除组件与指令的冲突。
特性模块可以把来自一个模块中的声明和来自另一个的区隔开。
2017-02-22 13:09:39 -05:00
{@a feature-modules}
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
## Feature modules
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
## 特性模块
2017-03-06 05:43:33 -05:00
This application isn't big yet, but it's already experiencing structural issues.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
该应用还不大,但是已经在受结构方面的问题困扰了。
2017-03-06 05:43:33 -05:00
* The root `AppModule` grows larger with each new application class.
2017-07-22 23:51:25 -04:00
随着一个个类被加入应用中,根模块`AppModule`变大了。
2017-03-06 05:43:33 -05:00
* There are conflicting directives.
The `HighlightDirective` in the contact re-colors the work done by the `HighlightDirective` declared in `AppModule` .
Also, it colors the application title text when it should color only the `ContactComponent` .
2017-07-22 23:51:25 -04:00
我们遇到了指令冲突。
联系人模块的`HighlightDirective`在`AppModule`中声明的`HighlightDirective`的基础上进行了二次上色。
并且,它染了应用标题文字的颜色,而不仅仅是`ContactComponent`中的。
2017-02-22 13:09:39 -05:00
* The app lacks clear boundaries between contact functionality and other application features.
That lack of clarity makes it harder to assign development responsibilities to different teams.
2017-07-22 23:51:25 -04:00
该应用在联系人和其它特性区之间缺乏清晰的边界。
这种缺失,导致难以在不同的开发组之间分配职责。
2017-03-06 05:43:33 -05:00
You can resolve these issues with _feature modules_ .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
我们用_特性模块_技术来缓解此问题。
2017-03-06 05:43:33 -05:00
A feature module is a class adorned by the `@NgModule` decorator and its metadata,
2017-02-22 13:09:39 -05:00
just like a root module.
Feature module metadata have the same properties as the metadata for a root module.
2017-07-22 23:51:25 -04:00
_特性模块_是带有`@NgModule`装饰器及其元数据的类,就像根模块一样。
特性模块的元数据和根模块的元数据的属性是一样的。
2017-02-22 13:09:39 -05:00
The root module and the feature module share the same execution context.
2017-03-06 05:43:33 -05:00
They share the same dependency injector, which means the services in one module
2017-02-22 13:09:39 -05:00
are available to all.
2017-07-22 23:51:25 -04:00
根模块和特性模块还共享着相同的执行环境。
它们共享着同一个依赖注入器,这意味着某个模块中定义的服务在所有模块中也都能用。
2017-03-06 05:43:33 -05:00
The modules have the following significant technical differences:
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
它们在技术上有两个显著的不同点:
2017-03-06 05:43:33 -05:00
* You _boot_ the root module to _launch_ the app;
you _import_ a feature module to _extend_ the app.
2017-07-22 23:51:25 -04:00
我们_引导_根模块来_启动_应用, 但_导入_特性模块来_扩展_应用。
2017-03-06 05:43:33 -05:00
* A feature module can expose or hide its implementation from other modules.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
特性模块可以对其它模块暴露或隐藏自己的实现。
2017-02-22 13:09:39 -05:00
Otherwise, a feature module is distinguished primarily by its intent.
2017-07-22 23:51:25 -04:00
此外,特性模块主要还是从它的设计意图上来区分。
2017-02-22 13:09:39 -05:00
A feature module delivers a cohesive set of functionality
2017-03-06 05:43:33 -05:00
focused on an application business domain, user workflow, facility (forms, http, routing),
or collection of related utilities.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
特性模块用来提供了内聚的功能集合。
聚焦于应用的某个业务领域、用户工作流、某个基础设施( 表单、HTTP、路由) , 或一组相关的工具集合。
2017-03-06 05:43:33 -05:00
While you can do everything within the root module,
feature modules help you partition the app into areas of specific interest and purpose.
2017-03-31 07:23:16 -04:00
<!-- CF: Is this paragraph just restating the previous paragraph?
2017-03-06 05:43:33 -05:00
If so, I recommend removing it or merging the two -->
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
虽然这些都能在根模块中做,但特性模块可以帮助我们把应用切分成具有特定关注点和目标的不同区域。
2017-02-22 13:09:39 -05:00
A feature module collaborates with the root module and with other modules
through the services it provides and
2017-03-06 05:43:33 -05:00
the components, directives, and pipes that it shares.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
特性模块通过自己提供的服务和它决定对外共享的那些组件、指令、管道来与根模块等其它模块协同工作。
2017-03-06 05:43:33 -05:00
In the next section, you'll carve the contact functionality out of the root module
2017-02-22 13:09:39 -05:00
and into a dedicated feature module.
2017-07-22 23:51:25 -04:00
下一节,我们从根模块中把与联系人有关的功能切分到专门的特性模块中。
2017-03-31 19:57:13 -04:00
{@a contact-module-v1}
2017-02-22 13:09:39 -05:00
### Make _Contact_ a feature module
2017-03-06 05:43:33 -05:00
<!-- CF: Is "Contact" a proper noun in this context? -->
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
### 把_联系人_做成特性模块
2017-02-22 13:09:39 -05:00
It's easy to refactor the contact material into a contact feature module.
2017-07-22 23:51:25 -04:00
把与联系人有关的这些元素重构到“联系人”特性模块中很简单。
2017-02-22 13:09:39 -05:00
1. Create the `ContactModule` in the `src/app/contact` folder.
2017-07-22 23:51:25 -04:00
在`src/app/contact`目录下创建`ContactModule`。
2017-02-22 13:09:39 -05:00
1. Move the contact material from `AppModule` to `ContactModule` .
2017-07-22 23:51:25 -04:00
把联系人相关的元素从`AppModule`移到`ContactModule`中。
2017-02-22 13:09:39 -05:00
1. Replace the imported `BrowserModule` with `CommonModule` .
2017-07-22 23:51:25 -04:00
把导入`BrowserModule`改为导入`CommonModule`。
2017-02-22 13:09:39 -05:00
1. Import the `ContactModule` into the `AppModule` .
2017-07-22 23:51:25 -04:00
在`AppModule`中导入`ContactModule`。
2017-03-06 05:43:33 -05:00
`AppModule` is the only existing class that changes. But you do add one new file.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`AppModule` 是唯一有改变的_已经存在_的类, 不过我们还会添加一个新文件。
2017-02-22 13:09:39 -05:00
### Add the _ContactModule_
2017-07-22 23:51:25 -04:00
### 添加 _ContactModule_
2017-03-06 05:43:33 -05:00
Here's the new `ContactModule` :
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
下面是新的`ContactModule`:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/contact/contact.module.2.ts" title = "src/app/contact/contact.module.ts" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
You copy from `AppModule` the contact-related import statements and `@NgModule` properties
that concern the contact, and paste them into `ContactModule` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
把`AppModule`中的相关联系人的 import 语句和`@NgModule`的相关属性复制到`ContactModule`。
2017-03-06 05:43:33 -05:00
You _import_ the `FormsModule` because the contact component needs it.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
_导入_`FormsModule`,因为联系人组件需要它。
2017-04-10 11:51:13 -04:00
< div class = "alert is-important" >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Modules don't inherit access to the components, directives, or pipes that are declared in other modules.
2017-02-22 13:09:39 -05:00
What `AppModule` imports is irrelevant to `ContactModule` and vice versa.
Before `ContactComponent` can bind with `[(ngModel)]` , its `ContactModule` must import `FormsModule` .
2017-07-22 23:51:25 -04:00
当前模块不会继承其它模块中对组件、指令或管道的访问权。
`AppModule` 中的 imports 与`ContatModule`的 imports 互不相干。
如果`ContactComponent`要绑定到`[(ngModel)]`,它所在的`ContactModule`必需导入`FormsModule`。
2017-04-10 11:51:13 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
You also replaced `BrowserModule` by `CommonModule` , for reasons explained in the
2017-04-30 16:10:32 -04:00
[Should I import BrowserModule or CommonModule? ](guide/ngmodule-faq#q-browser-vs-common-module )
section of the [NgModule FAQs ](guide/ngmodule-faq ) page.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
我们还用`CommonModule`替换了`BrowserModule`,其中缘由参见[这条常见问题](cookbook/ngmodule-faq#q-browser-vs-common-module)。
2017-03-06 05:43:33 -05:00
You _declare_ the contact component, directive, and pipe in the module `declarations` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
我们在该模块的`declarations`中*声明*了联系人组件、指令和管道。
2017-03-06 05:43:33 -05:00
You _export_ the `ContactComponent` so
2017-02-22 13:09:39 -05:00
other modules that import the `ContactModule` can include it in their component templates.
2017-07-22 23:51:25 -04:00
我们*导出*了`ContactComponent`,这样其它模块只要导入了`ContactModule`,就可以在它们的组件模板中使用`ContactComponent`了。
2017-02-22 13:09:39 -05:00
All other declared contact classes are private by default.
The `AwesomePipe` and `HighlightDirective` are hidden from the rest of the application.
The `HighlightDirective` can no longer color the `AppComponent` title text.
2017-03-31 19:57:13 -04:00
2017-07-22 23:51:25 -04:00
声明的所有其它联系人类默认都是私有的。
`AwesomePipe` 和`HighlightDirective`对应用的其它部分是不可见的。
所以`HighlightDirective`不能把`AppComponent`的标题文字染色。
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
### Refactor the _AppModule_
2017-07-22 23:51:25 -04:00
### 重构 *AppModule*
2017-02-22 13:09:39 -05:00
Return to the `AppModule` and remove everything specific to the contact feature set.
2017-07-22 23:51:25 -04:00
返回`AppModule`并移除专属于联系人特性下的任何东西。
2017-03-06 05:43:33 -05:00
* Delete the contact import statements.
2017-07-22 23:51:25 -04:00
删除属于联系人的`import`语句。
2017-03-06 05:43:33 -05:00
* Delete the contact declarations and contact providers.
2017-07-22 23:51:25 -04:00
删除联系人的`declarations`和`providers`。
2017-03-06 05:43:33 -05:00
* Delete the `FormsModule` from the `imports` list (`AppComponent` doesn't need it).
2017-07-22 23:51:25 -04:00
从`imports`列表中移除`FormsModule`( `AppComponent`并不需要它)。
2017-02-22 13:09:39 -05:00
Leave only the classes required at the application root level.
2017-07-22 23:51:25 -04:00
只保留本应用的根一级需要的那些类。
2017-02-22 13:09:39 -05:00
Then import the `ContactModule` so the app can continue to display the exported `ContactComponent` .
2017-07-22 23:51:25 -04:00
然后,导入`ContactModule`,以便应用能够继续显示导出的`ContactComponent`。
2017-03-06 05:43:33 -05:00
Here's the refactored version of the `AppModule` along with the previous version.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
下面是`AppModule`重构完的版本与之前版本的对比。
2017-03-27 11:08:53 -04:00
< code-tabs >
< code-pane title = "src/app/app.module.ts (v2)" path = "ngmodule/src/app/app.module.2.ts" >
< / code-pane >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< code-pane title = "src/app/app.module.ts (v1)" path = "ngmodule/src/app/app.module.1b.ts" >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-pane >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-tabs >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
### Improvements
2017-07-22 23:51:25 -04:00
### 改进之处
2017-03-31 19:57:13 -04:00
There's a lot to like in the revised `AppModule` .
2017-07-22 23:51:25 -04:00
修改后的`AppModule`有一些很棒的特性。
2017-02-22 13:09:39 -05:00
* It does not change as the _Contact_ domain grows.
2017-07-22 23:51:25 -04:00
它不会再随着_联系人_的领域扩张而修改。
2017-03-06 05:43:33 -05:00
* It only changes when you add new modules.
2017-07-22 23:51:25 -04:00
只有当添加新模块时才需要修改它。
2017-02-22 13:09:39 -05:00
* It's simpler:
2017-03-31 19:57:13 -04:00
2017-07-22 23:51:25 -04:00
它也变得简单了:
2017-03-06 05:43:33 -05:00
* Fewer import statements.
2017-07-22 23:51:25 -04:00
更少的`import`语句
2017-03-06 05:43:33 -05:00
* No `FormsModule` import.
2017-07-22 23:51:25 -04:00
不再导入`FormsModule`
2017-03-06 05:43:33 -05:00
* No contact-specific declarations.
2017-07-22 23:51:25 -04:00
没有与联系人有关的声明
2017-03-06 05:43:33 -05:00
* No `ContactService` provider.
2017-07-22 23:51:25 -04:00
没有`ContactService`提供商
2017-03-06 05:43:33 -05:00
* No `HighlightDirective` conflict.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
没有`HighlightDirective`冲突
2017-02-22 13:09:39 -05:00
Try this `ContactModule` version of the sample.
2017-07-22 23:51:25 -04:00
试试范例的`ContactModule`版。
2017-04-26 08:12:22 -04:00
< live-example embedded plnkr = "contact.2" img = "guide/ngmodule/contact-2-plunker.png" > Try the live example.< / live-example >
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
< live-example embedded plnkr = "contact.2" img = "devguide/ngmodule/contact-2-plunker.png" > 试试在线例子< / live-example >
2017-02-22 13:09:39 -05:00
{@a lazy-load}
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
## Lazy-loading modules with the router
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
## 用路由器实现惰性 (lazy) 加载
2017-02-22 13:09:39 -05:00
The Heroic Staffing Agency sample app has evolved.
2017-03-06 05:43:33 -05:00
It has two more modules, one for managing the heroes on staff and another for matching crises to the heroes.
2017-02-22 13:09:39 -05:00
Both modules are in the early stages of development.
2017-03-06 05:43:33 -05:00
Their specifics aren't important to the story and this page doesn't discuss every line of code.
2017-03-27 11:08:53 -04:00
2017-07-22 23:51:25 -04:00
英雄职介所这个例子应用继续成长。
它又增加了两个模块,一个用来管理雇佣的英雄,另一个用来匹配英雄与危机。
这两个模块都还处于前期开发阶段。
它们对于整个故事来说无关紧要,这里我们就不逐行讨论了。
2017-04-10 11:51:13 -04:00
< div class = "l-sub-section" >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-07-22 23:51:25 -04:00
Examine and download the complete source for this version from the
2017-07-29 12:03:22 -04:00
< live-example plnkr = "pre-shared.3" img = "guide/ngmodule/v3-plunker.png" > live example.< / live-example >
2017-07-22 23:51:25 -04:00
到< live-example plnkr = "pre-shared.3" img = "devguide/ngmodule/v3-plunker.png" > 在线例子< / live-example >
试用并下载当前版本的完整代码。
2017-04-10 11:51:13 -04:00
< / div >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-03-27 11:08:53 -04:00
Some facets of the current application merit discussion are as follows:
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
当前应用中还有一些方面值得深入探讨。
2017-02-22 13:09:39 -05:00
* The app has three feature modules: Contact, Hero, and Crisis.
2017-07-22 23:51:25 -04:00
该应用有三个特性模块:联系人 (Contact) 、英雄 (Hero) 和危机 (Crisis) 。
2017-02-22 13:09:39 -05:00
* The Angular router helps users navigate among these modules.
2017-07-22 23:51:25 -04:00
Angular 路由器帮助用户在这些模块之间导航。
2017-02-22 13:09:39 -05:00
* The `ContactComponent` is the default destination when the app starts.
2017-07-22 23:51:25 -04:00
`ContactComponent` 组件是应用启动时的默认页。
2017-02-22 13:09:39 -05:00
* The `ContactModule` continues to be "eagerly" loaded when the application starts.
2017-07-22 23:51:25 -04:00
`ContactModule` 仍然会在应用启动时被主动加载。
2017-02-22 13:09:39 -05:00
* `HeroModule` and the `CrisisModule` are lazy loaded.
2017-07-22 23:51:25 -04:00
`HeroModule` 和`CrisisModule`会被惰性加载。
2017-03-31 19:57:13 -04:00
{@a app-component-template}
2017-07-22 23:51:25 -04:00
The new `AppComponent` templatehas
2017-02-22 13:09:39 -05:00
a title, three links, and a `<router-outlet>` .
2017-07-22 23:51:25 -04:00
我们从这个`AppComponent`新模板的顶部看起:标题、三个链接和`< router-outlet > `。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.component.3.ts" region = "template" title = "src/app/app.component.ts (v3 - Template)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
The `<app-contact>` element is gone; you're routing to the _Contact_ page now.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`<app-contact>` 元素不见了, 改成了路由到_联系人_页。
2017-02-22 13:09:39 -05:00
The `AppModule` has changed modestly:
2017-07-22 23:51:25 -04:00
对`AppModule`进行适度的修改:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.module.3.ts" title = "src/app/app.module.ts (v3)" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< div class = "l-sub-section" >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Some file names bear a `.3` extension that indicates
2017-02-22 13:09:39 -05:00
a difference with prior or future versions.
2017-03-06 05:43:33 -05:00
The significant differences will be explained in due course.
2017-03-31 07:23:16 -04:00
<!-- CF: Can you be more specific here? Are the differences explained later in this page or in another page? -->
2017-03-27 11:08:53 -04:00
2017-07-22 23:51:25 -04:00
有些文件名带有`.3`扩展名,用来和以前/以后的版本区分开。
我们会在适当的时机解释它们的差异。
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< / div >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
The module still imports `ContactModule` so that its routes and components are mounted when the app starts.
2017-07-22 23:51:25 -04:00
该模块仍然要导入`ContactModule`模块,以便在应用启动时加载它的路由和组件。
2017-02-22 13:09:39 -05:00
The module does _not_ import `HeroModule` or `CrisisModule` .
They'll be fetched and mounted asynchronously when the user navigates to one of their routes.
2017-07-22 23:51:25 -04:00
该模块_不_导入`HeroModule`或`CrisisModule`。
它们将在用户导航到其中的某个路由时,被异步获取并加载。
2017-03-06 05:43:33 -05:00
The significant change from version 2 is the addition of the *AppRoutingModule* to the module `imports` .
2017-03-31 19:57:13 -04:00
The `AppRoutingModule` is a [routing module ](guide/router#routing-module )
2017-02-22 13:09:39 -05:00
that handles the app's routing concerns.
2017-07-22 23:51:25 -04:00
与第二版相比,最值得注意的修改是`imports`中那个额外的***AppRoutingModule***模块。
`AppRoutingModule` 是一个[**路由模块**](guide/router#routing-module)
用来处理应用的路由。
2017-02-22 13:09:39 -05:00
### App routing
2017-07-22 23:51:25 -04:00
### 应用路由
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app-routing.module.ts" title = "src/app/app-routing.module.ts" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-11 10:36:40 -05:00
The router is the subject of the [Routing & Navigation ](guide/router ) page, so this section skips many of the details and
2017-03-06 05:43:33 -05:00
concentrates on the intersection of NgModules and routing.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
路由器有[专门的章节](guide/router)做深入讲解,所以这里我们跳过细节,而是专注于它和 Angular 模块的协作。
2017-03-06 05:43:33 -05:00
The `app-routing.module.ts` file defines three routes.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`app-routing.module.ts` 文件定义了三个路由。
2017-03-06 05:43:33 -05:00
The first route redirects the empty URL (such as `http://host.com/` )
to another route whose path is `contact` (such as `http://host.com/contact` ).
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
第一个路由把空白 URL( 例如`http://host.com/`)重定向到了另一个路径为`contact`的路由(例如`http://host.com/contact`)。
2017-02-22 13:09:39 -05:00
The `contact` route isn't defined here.
It's defined in the _Contact_ feature's _own_ routing module, `contact-routing.module.ts` .
It's standard practice for feature modules with routing components to define their own routes.
2017-03-06 05:43:33 -05:00
You'll get to that file in a moment.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`contact` 路由并不是在这里定义的,而是定义在*联系人*特性区自己的路由文件`contact.routing.ts`中。
对于带有路由组件的特性模块,其标准做法就是让它们定义自己的路由。
稍后我们就会看到这些。
2017-02-22 13:09:39 -05:00
The remaining two routes use lazy loading syntax to tell the router where to find the modules:
2017-07-22 23:51:25 -04:00
另外两个路由使用惰性加载语法来告诉路由器要到哪里去找这些模块。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app-routing.module.ts" region = "lazy-routes" title = "src/app/app-routing.module.ts" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< div class = "l-sub-section" >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
A lazy-loaded module location is a _string_ , not a _type_ .
2017-02-22 13:09:39 -05:00
In this app, the string identifies both the module _file_ and the module _class_ ,
the latter separated from the former by a `#` .
2017-03-27 11:08:53 -04:00
2017-07-22 23:51:25 -04:00
惰性加载模块的位置是*字符串*而不是*类型*。
在本应用中,该字符串同时标记出了模块*文件*和模块*类*,两者用`#`分隔开。
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< / div >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
### RouterModule.forRoot
2017-03-06 05:43:33 -05:00
The `forRoot` static class method of the `RouterModule` with the provided configuration and
2017-02-22 13:09:39 -05:00
added to the `imports` array provides the routing concerns for the module.
2017-07-22 23:51:25 -04:00
`RouterModule` 类的`forRoot`静态方法和提供的配置,被添加到`imports`数组中,提供该模块的路由信息。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app-routing.module.ts" region = "forRoot" title = "src/app/app-routing.module.ts" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
The returned `AppRoutingModule` class is a `Routing Module` containing both the `RouterModule` directives
2017-03-06 05:43:33 -05:00
and the dependency-injection providers that produce a configured `Router` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
该方法返回的`AppRoutingModule`类是一个`路由模块`,它同时包含了`RouterModule`指令和用来生成配置好的`Router`的依赖注入提供商。
2017-03-06 05:43:33 -05:00
This `AppRoutingModule` is intended for the app _root_ module only.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
这个`AppRoutingModule`_仅_用于应用的_根_模块。
2017-02-22 13:09:39 -05:00
2017-04-10 11:51:13 -04:00
< div class = "alert is-critical" >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Never call `RouterModule.forRoot` in a feature-routing module.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
永远不要在特性路由模块中调用`RouterModule.forRoot`!
2017-04-10 11:51:13 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Back in the root `AppModule` , add the `AppRoutingModule` to its `imports` list,
2017-02-22 13:09:39 -05:00
and the app is ready to navigate.
2017-07-22 23:51:25 -04:00
回到根模块`AppModule`,把这个`AppRoutingModule`添加到根模块的`imports`列表中,该应用就可以正常导航了。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.module.3.ts" region = "imports" title = "src/app/app.module.ts (imports)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
### Routing to a feature module
2017-07-22 23:51:25 -04:00
### 路由到特性模块
2017-02-22 13:09:39 -05:00
The `src/app/contact` folder holds a new file, `contact-routing.module.ts` .
2017-03-06 05:43:33 -05:00
It defines the `contact` route mentioned earlier and provides a `ContactRoutingModule` as follows:
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`src/app/contact` 目录中也有一个新文件`contact-routing.module.ts`。
它定义了我们前面提到过的`联系人`路由,并提供了`ContactRoutingModule`,就像这样:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/contact/contact-routing.module.ts" region = "routing" title = "src/app/contact/contact-routing.module.ts (routing)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
This time you pass the route list to the `forChild` method of the `RouterModule` .
The route list is only responsible for providing additional routes and is intended for feature modules.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
这次我们要把路由列表传给`RouterModule`的`forChild`方法。
该方法会为特性模块生成另一种对象。
2017-02-22 13:09:39 -05:00
2017-04-10 11:51:13 -04:00
< div class = "alert is-important" >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Always call `RouterModule.forChild` in a feature-routing module.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
总是在特性路由模块中调用`RouterModule.forChild`。
2017-02-22 13:09:39 -05:00
2017-04-10 11:51:13 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-10 11:51:13 -04:00
< div class = "alert is-helpful" >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
_forRoot_ and _forChild_ are conventional names for methods that
2017-02-22 13:09:39 -05:00
deliver different `import` values to root and feature modules.
Angular doesn't recognize them but Angular developers do.
2017-07-22 23:51:25 -04:00
当需要为根模块和特性模块分别提供不同的`导入`值时,***forRoot***和***forChild***是约定俗成的方法名。
虽然 Angular 无法识别它们,但是 Angular 开发人员可以。
2017-04-30 16:10:32 -04:00
[Follow this convention ](guide/ngmodule-faq#q-for-root ) if you write a similar module
that has both shared [declarables ](guide/ngmodule-faq#q-declarable ) and services.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
当你要写类似的模块,来为根模块和特性模块分别导出一些[_声明_](cookbook/ngmodule-faq#q-declarable)和服务时,请[遵循这个约定](cookbook/ngmodule-faq#q-for-root)。
2017-02-22 13:09:39 -05:00
2017-04-10 11:51:13 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
`ContactModule` has changed in two small but important ways.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`ContactModule` 已经做了两个微小但重要的细节改动:
2017-03-27 11:08:53 -04:00
< code-tabs >
< code-pane title = "src/app/contact/contact.module.3.ts" path = "ngmodule/src/app/contact/contact.module.3.ts" region = "class" >
< / code-pane >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< code-pane title = "src/app/contact/contact.module.2.ts" path = "ngmodule/src/app/contact/contact.module.2.ts" region = "class" >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-pane >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-tabs >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
* It imports the `ContactRoutingModule` object from `contact-routing.module.ts` .
2017-07-22 23:51:25 -04:00
它从`contact-routing.module.ts`中导入了`ContactRoutingModule`对象
2017-03-06 05:43:33 -05:00
* It no longer exports `ContactComponent` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
它不再导出`ContactComponent`
2017-03-06 05:43:33 -05:00
Now that you navigate to `ContactComponent` with the router, there's no reason to make it public.
Also, `ContactComponent` doesn't need a selector.
2017-02-22 13:09:39 -05:00
No template will ever again reference this `ContactComponent` .
2017-03-11 10:36:40 -05:00
It's gone from the [AppComponent template ](guide/ngmodule#app-component-template ).
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
现在我们通过路由器导航到`ContactComponent`,所以也就没有理由公开它了。它也不再需要选择器 (selector)。
也没有模板会再引用`ContactComponent`。它从 [_AppComponent_ 模板 ](guide/ngmodule#app-component-template )中彻底消失了。
2017-02-22 13:09:39 -05:00
{@a hero-module}
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
### Lazy-loaded routing to a module
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
### 路由到惰性加载的模块
2017-03-06 05:43:33 -05:00
The lazy-loaded `HeroModule` and `CrisisModule` follow the same principles as any feature module.
2017-02-22 13:09:39 -05:00
They don't look different from the eagerly loaded `ContactModule` .
2017-07-22 23:51:25 -04:00
惰性加载的`HeroModule`和`CrisisModule`与其它特性模块遵循同样的规则。它们和主动加载的`ContactModule`看上去没有任何区别。
2017-03-06 05:43:33 -05:00
The `HeroModule` is a bit more complex than the `CrisisModule` , which makes it
a more interesting and useful example. Its file structure is as follows:
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`HeroModule` 比`CrisisModule`略复杂一些,因此更适合用作范例。它的文件结构如下:
2017-03-30 15:04:18 -04:00
2017-04-11 16:44:52 -04:00
< div class = 'filetree' >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
hero
2017-04-11 16:44:52 -04:00
< / div >
< div class = 'children' >
< div class = 'file' >
2017-02-22 13:09:39 -05:00
hero-detail.component.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
hero-list.component.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
hero.component.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
hero.module.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
hero-routing.module.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
hero.service.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< div class = 'file' >
2017-02-22 13:09:39 -05:00
highlight.directive.ts
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-04-11 16:44:52 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-31 07:23:16 -04:00
This is the child routing scenario familiar to readers of the
2017-03-31 19:57:13 -04:00
[Child routing component ](guide/router#child-routing-component ) section of the
[Routing & Navigation ](guide/router#child-routing-component ) page.
2017-02-22 13:09:39 -05:00
The `HeroComponent` is the feature's top component and routing host.
Its template has a `<router-outlet>` that displays either a list of heroes (`HeroList`)
or an editor of a selected hero (`HeroDetail`).
Both components delegate to the `HeroService` to fetch and save data.
2017-07-22 23:51:25 -04:00
如果你读过[路由](guide/router#child-routing-component)那章,那么对这个子路由的场景应该觉得很熟悉。
`HeroComponent` 是本特性区的顶级组件和路由宿主。
模板带有`< router-outlet > `指令,它或者显示英雄列表(`HeroList`)或者显示所选英雄的编辑器(`HeroDetail`)。
这两个组件都把获取和保存数据的任务委托给`HeroService`执行。
2017-03-06 05:43:33 -05:00
Yet another `HighlightDirective` colors elements in yet a different shade.
2017-03-11 10:36:40 -05:00
In the next section, [Shared modules ](guide/ngmodule#shared-module "Shared modules" ), you'll resolve the repetition and inconsistencies.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
还有*另一个*`HighlightDirective`指令,它用另一种方式为元素染色。
在下一节的[共享模块](guide/ngmodule#shared-module "共享模块")中,我们会解决这种不必要的重复和不一致性。
2017-02-22 13:09:39 -05:00
The `HeroModule` is a feature module like any other.
2017-07-22 23:51:25 -04:00
`HeroModule` 是特性模块,与其它的没什么不同。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/hero/hero.module.3.ts" region = "class" title = "src/app/hero/hero.module.ts (class)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
It imports the `FormsModule` because the `HeroDetailComponent` template binds with `[(ngModel)]` .
It imports the `HeroRoutingModule` from `hero-routing.module.ts` just as `ContactModule` and `CrisisModule` do.
2017-07-22 23:51:25 -04:00
它导入了`FormsModule`,因为`HeroDetailComponent`的模板中绑定到了`[(ngModel)]`。
像`ContactModule`和`CrisisModule`中一样,它还从`hero-routing.module.ts`中导入了`HeroRoutingModule`。
2017-03-06 05:43:33 -05:00
The `CrisisModule` is much the same.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`CrisisModule` 和本模块非常像,我们不再赘述。
2017-07-29 12:03:22 -04:00
< live-example embedded plnkr = "pre-shared.3" img = "guide/ngmodule/v3-plunker.png" > 试试在线例子。< / live-example >
2017-02-22 13:09:39 -05:00
{@a shared-module}
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
## Shared modules
2017-07-22 23:51:25 -04:00
## 共享模块
2017-02-22 13:09:39 -05:00
The app is shaping up.
2017-03-06 05:43:33 -05:00
But it carries three different versions of the `HighlightDirective` .
And the many files cluttering the app folder level could be better organized.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
本应用在继续演进中。
让我们感到不爽的是:这里有`HighlightDirective`的三个不同版本。
还有一大堆其它乱七八糟的东西堆在 app 目录这一级,我们得把它们清出去。
2017-03-06 05:43:33 -05:00
Add a `SharedModule` to hold the common components, directives, and pipes
2017-02-22 13:09:39 -05:00
and share them with the modules that need them.
2017-07-22 23:51:25 -04:00
我们添加`SharedModule`来存放这些公共组件、指令和管道,并且共享给那些需要它们的模块。
2017-03-06 05:43:33 -05:00
1. Create an `src/app/shared` folder.
2017-07-22 23:51:25 -04:00
创建`src/app/shared`目录
2017-03-31 19:57:13 -04:00
1. Move the `AwesomePipe` and `HighlightDirective` from `src/app/contact` to `src/app/shared` .
2017-07-22 23:51:25 -04:00
把`AwesomePipe`和`HighlightDirective`从`src/app/contact`移到`src/app/shared`中。
2017-03-31 19:57:13 -04:00
1. Delete the `HighlightDirective` classes from `src/app/` and `src/app/hero` .
2017-07-22 23:51:25 -04:00
从`src/app/`和`src/app/hero`目录中删除`HighlightDirective`类
2017-03-31 19:57:13 -04:00
1. Create a `SharedModule` class to own the shared material.
2017-07-22 23:51:25 -04:00
创建`SharedModule`类来管理这些共享的素材
2017-03-31 19:57:13 -04:00
1. Update other feature modules to import `SharedModule` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
更新其它特性模块,导入`SharedModule`
2017-03-06 05:43:33 -05:00
Here is the `SharedModule` :
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
下面就是这个`SharedModule`:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/shared/shared.module.ts" title = "src/app/src/app/shared/shared.module.ts" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Note the following:
2017-03-31 19:57:13 -04:00
2017-07-22 23:51:25 -04:00
值得注意的有:
2017-02-22 13:09:39 -05:00
* It imports the `CommonModule` because its component needs common directives.
2017-07-22 23:51:25 -04:00
它导入了`CommonModule`,这是因为它的组件需要这些公共指令。
2017-02-22 13:09:39 -05:00
* It declares and exports the utility pipe, directive, and component classes as expected.
2017-07-22 23:51:25 -04:00
正如我们所期待的,它声明并导出了工具性的管道、指令和组件类。
2017-02-22 13:09:39 -05:00
* It re-exports the `CommonModule` and `FormsModule`
2017-07-22 23:51:25 -04:00
它重新导出了`CommonModule`和`FormsModule`
2017-02-22 13:09:39 -05:00
### Re-exporting other modules
2017-07-22 23:51:25 -04:00
### 重新导出其它模块
2017-03-06 05:43:33 -05:00
If you review the application, you may notice that many components requiring `SharedModule` directives
2017-02-22 13:09:39 -05:00
also use `NgIf` and `NgFor` from `CommonModule`
and bind to component properties with `[(ngModel)]` , a directive in the `FormsModule` .
2017-03-06 05:43:33 -05:00
Modules that declare these components would have to import `CommonModule` , `FormsModule` , and `SharedModule` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
当回顾应用程序时,我们注意到很多需要`SharedModule`的组件也同时用到了来自`CommonModule`的`NgIf`和`NgFor`指令,
并且还通过来自`FormsModule`的`[(ngModel)]`指令绑定到了组件的属性。
那些声明这些组件的模块将不得不同时导入`CommonModule`、`FormsModule`和`SharedModule`。
2017-03-06 05:43:33 -05:00
You can reduce the repetition by having `SharedModule` re-export `CommonModule` and `FormsModule`
so that importers of `SharedModule` get `CommonModule` and `FormsModule` for free.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
通过让`SharedModule`重新导出`CommonModule`和`FormsModule`模块,我们可以消除这种重复。
于是导入`SharedModule`的模块也同时*免费*获得了`CommonModule`和`FormsModule`。
2017-02-22 13:09:39 -05:00
As it happens, the components declared by `SharedModule` itself don't bind with `[(ngModel)]` .
Technically, there is no need for `SharedModule` to import `FormsModule` .
2017-07-22 23:51:25 -04:00
实际上,`SharedModule`本身所声明的组件没绑定过`[(ngModel)]`,那么,严格来说`SharedModule`并不需要导入`FormsModule`。
2017-02-22 13:09:39 -05:00
`SharedModule` can still export `FormsModule` without listing it among its `imports` .
2017-07-22 23:51:25 -04:00
这时`SharedModule`仍然可以导出`FormsModule`,而不需要先把它列在`imports`中。
2017-02-22 13:09:39 -05:00
### Why _TitleComponent_ isn't shared
2017-07-22 23:51:25 -04:00
### 为什么 *TitleComponent* 没有被共享
2017-03-06 05:43:33 -05:00
`SharedModule` exists to make commonly used components, directives, and pipes available
for use in the templates of components in many other modules.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
设计`SharedModule`的目的在于让常用的组件、指令和管道可以被用在*很多*其它模块的组件模板中。
2017-03-06 05:43:33 -05:00
The `TitleComponent` is used only once by the `AppComponent` .
2017-02-22 13:09:39 -05:00
There's no point in sharing it.
2017-07-22 23:51:25 -04:00
而`TitleComponent`*只被*`AppComponent`用了一次,因此没必要共享它。
2017-03-31 19:57:13 -04:00
{@a no-shared-module-providers}
2017-02-22 13:09:39 -05:00
### Why _UserService_ isn't shared
2017-07-22 23:51:25 -04:00
### 为什么 *UserService* 没有被共享
2017-03-06 05:43:33 -05:00
While many components share the same service instances,
2017-02-22 13:09:39 -05:00
they rely on Angular dependency injection to do this kind of sharing, not the module system.
2017-07-22 23:51:25 -04:00
虽然很多组件都共享着同一个服务*实例*,但它们是靠 Angular 的依赖注入体系实现的,而不是模块体系。
2017-03-06 05:43:33 -05:00
Several components of the sample inject the `UserService` .
There should be only one instance of the `UserService` in the entire application
and only one provider of it.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
例子中的很多组件都注入了`UserService`。
在整个应用程序中,*只应该有一个*`UserService`的实例,并且它*只应该有一个*提供商。
2017-02-22 13:09:39 -05:00
`UserService` is an application-wide singleton.
2017-03-06 05:43:33 -05:00
You don't want each module to have its own separate instance.
2017-04-30 16:10:32 -04:00
Yet there is [a real danger ](guide/ngmodule-faq#q-why-bad ) of that happening
2017-03-31 07:23:16 -04:00
<!-- CF: This link goes to the top of the NgModule FAQs page.
2017-03-06 05:43:33 -05:00
It looks like it is supposed to go to a specific question/section within the page. -->
2017-02-22 13:09:39 -05:00
if the `SharedModule` provides the `UserService` .
2017-07-22 23:51:25 -04:00
`UserService` 是全应用级单例。
我们不希望每个模块都各自有它的实例。
而如果由`SharedModule`提供`UserService`,就会导致[铁板钉钉的危险](cookbook/ngmodule-faq#q-why-it-is-bad)。
2017-02-22 13:09:39 -05:00
2017-04-10 11:51:13 -04:00
< div class = "alert is-critical" >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Do *not* specify app-wide singleton `providers` in a shared module.
A lazy-loaded module that imports that shared module makes its own copy of the service.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
**不要**在共享模块中把应用级单例添加到`providers`中。
否则如果一个惰性加载模块导入了此共享模块,就会导致它自己也生成一份此服务的实例。
2017-02-22 13:09:39 -05:00
2017-04-10 11:51:13 -04:00
< / div >
2017-02-22 13:09:39 -05:00
{@a core-module}
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
## The Core module
2017-07-22 23:51:25 -04:00
## 核心 (Core) 模块
2017-03-06 05:43:33 -05:00
At the moment, the root folder is cluttered with the `UserService`
and `TitleComponent` that only appear in the root `AppComponent` .
You didn't include them in the `SharedModule` for reasons just explained.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
现在,我们的根目录下只剩下`UserService`和`TitleComponent`这两个被根组件`AppComponent`用到的类没有清理了。
但正如我们已经解释过的,它们无法被包含在`SharedModule`中。
2017-03-06 05:43:33 -05:00
Instead, gather them in a single `CoreModule` that you import once when the app starts
2017-03-31 07:23:16 -04:00
and never import anywhere else.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
不过,我们可以把它们收集到单独的`CoreModule`中,并且**只在应用启动时导入它*一次***, **而不会在其它地方导入它**。
2017-03-06 05:43:33 -05:00
Perform the following steps:
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
执行下列步骤:
2017-03-06 05:43:33 -05:00
1. Create an `src/app/core` folder.
2017-07-22 23:51:25 -04:00
创建`src/app/core`文件夹
1. Move the `UserService` and `TitleComponent` from `src/app/` to `src/app/core` .
把`UserService`和`TitleComponent`从`src/app`移到`src/app/core`中
1. Create a `CoreModule` class to own the core material.
创建`CoreModule`类来管理这些核心素材
1. Update the `AppRoot` module to import `CoreModule` .
修改`AppRoot`模块,使其导入`CoreModule`模块
2017-02-22 13:09:39 -05:00
2017-03-06 05:43:33 -05:00
Most of this work is familiar. The interesting part is the `CoreModule` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
这些都是一些熟悉的普通任务。令人感兴趣的是`CoreModule`:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/core/core.module.ts" region = "v4" title = "src/app/src/app/core/core.module.ts" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< div class = "l-sub-section" >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
You're importing some extra symbols from the Angular core library that you're not using yet.
2017-03-27 11:08:53 -04:00
They'll become relevant later in this page.
2017-07-22 23:51:25 -04:00
我们正在从 Angular 核心库中导入一些从未用到的符号,稍后我们会接触它们。
2017-04-10 11:51:13 -04:00
< / div >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-03-27 11:08:53 -04:00
The `@NgModule` metadata should be familiar.
2017-03-06 05:43:33 -05:00
You declare the `TitleComponent` because this module owns it and you export it
2017-02-22 13:09:39 -05:00
because `AppComponent` (which is in `AppModule` ) displays the title in its template.
2017-03-06 05:43:33 -05:00
`TitleComponent` needs the Angular `NgIf` directive that you import from `CommonModule` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
我们对`@NgModule`的元数据应该很熟悉。
由于该模块_拥有_`TitleComponent`,所以我们声明了它。由于`AppComponent`(位于`AppModule`模块)在模板中显示了这个标题,所以我们导出了它。
由于`TitleComponent`需要用到 Angular 的`NgIf`指令,所以我们导入了`CommonModule`。
2017-03-06 05:43:33 -05:00
`CoreModule` provides the `UserService` . Angular registers that provider with the app root injector,
2017-02-22 13:09:39 -05:00
making a singleton instance of the `UserService` available to any component that needs it,
whether that component is eagerly or lazily loaded.
2017-07-22 23:51:25 -04:00
`CoreModule` _提供_了`UserService`。Angular 在该应用的根注入器中注册了它的提供商,
导致这份`UserService`的实例在每个需要它的组件中都是可用的,无论那个组件时主动加载的还是惰性加载的。
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< div class = "l-sub-section" >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-05-08 23:47:34 -04:00
< h3 class = "no-toc" > Why bother?< / h3 >
2017-07-22 23:51:25 -04:00
2017-07-29 12:03:22 -04:00
< h3 class = "no-toc" > 没必要?< / h3 >
2017-07-22 23:51:25 -04:00
2017-02-22 13:09:39 -05:00
This scenario is clearly contrived.
The app is too small to worry about a single service file and a tiny, one-time component.
2017-07-22 23:51:25 -04:00
这个场景设计的是有点生硬。
该应用太小了,所以其实并不需要拆分出单独的服务文件和小型的、一次性的组件。
2017-02-22 13:09:39 -05:00
A `TitleComponent` sitting in the root folder isn't bothering anyone.
The root `AppModule` can register the `UserService` itself,
2017-03-06 05:43:33 -05:00
as it does currently, even if you decide to relocate the `UserService` file to the `src/app/core` folder.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
把`TitleComponent`放在根目录中其实也无所谓。
即使我们决定把`UserService`文件挪到`app/core`目录中,根`AppModule`也仍然可以自己注册`UserService`(就像现在这样)。
2017-03-06 05:43:33 -05:00
Real-world apps have more to worry about.
They can have several single-use components (such as spinners, message toasts, and modal dialogs)
2017-02-22 13:09:39 -05:00
that appear only in the `AppComponent` template.
2017-03-06 05:43:33 -05:00
You don't import them elsewhere so they're not shared in that sense.
2017-02-22 13:09:39 -05:00
Yet they're too big and messy to leave loose in the root folder.
2017-07-22 23:51:25 -04:00
但真实的应用要考虑很多。
它们有一些只用于`AppComponent`的模板的一次性的组件(例如:加载动画、消息浮层和模态对话框等)。
我们不用在其它地方导入它们,因此没必要*共享*它们。
然而如果把它们留在根目录,还是显得太大、太乱了。
2017-02-22 13:09:39 -05:00
Apps often have many singleton services like this sample's `UserService` .
2017-03-06 05:43:33 -05:00
Each must be registered exactly once, in the app root injector, when the application starts.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
应用通常还有很多像这里的`UserService`这样的单例服务。
当程序启动时,每个服务都只能在应用的“根注入器”中*注册一次*。
2017-03-31 07:23:16 -04:00
While many components inject such services in their constructors— and
therefore require JavaScript `import` statements to import their symbols— no
2017-03-06 05:43:33 -05:00
other component or module should define or re-create the services themselves.
Their _providers_ aren't shared.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
当很多组件在它们的构造函数中注入这些服务时 —
因此也需要用 JavaScript 的`import`语句来导入它们的符号 —
任何组件或模块自身都不应该定义或重新创建这些服务。
因为它们的*提供商*不是共享的。
2017-03-06 05:43:33 -05:00
We recommend collecting such single-use classes and hiding their details inside a `CoreModule` .
2017-02-22 13:09:39 -05:00
A simplified root `AppModule` imports `CoreModule` in its capacity as orchestrator of the application as a whole.
2017-07-22 23:51:25 -04:00
因此我们建议把这些一次性的类收集到`CoreModule`中,并且隐藏它们的实现细节。
简化之后的根模块`AppModule`导入`CoreModule`来获取其能力。记住,根模块是整个应用的总指挥,不应该插手过多细节。
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< / div >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
## Cleanup
2017-07-22 23:51:25 -04:00
## 清理
2017-03-06 05:43:33 -05:00
Having refactored to a `CoreModule` and a `SharedModule` , it's time to clean up the other modules.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
我们已经重构完`CoreModule`和`SharedModule`,现在开始清理其它模块。
2017-02-22 13:09:39 -05:00
### A trimmer _AppModule_
2017-07-22 23:51:25 -04:00
### 清理 *AppModule*
2017-02-22 13:09:39 -05:00
Here is the updated `AppModule` paired with version 3 for comparison:
2017-07-22 23:51:25 -04:00
这里是更新后的`AppModule`与其第三版本的对比:
2017-03-27 11:08:53 -04:00
< code-tabs >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< code-pane title = "src/app/app.module.ts (v4)" path = "ngmodule/src/app/app.module.ts" region = "v4" >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-pane >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< code-pane title = "src/app/app.module.ts (v3)" path = "ngmodule/src/app/app.module.3.ts" >
< / code-pane >
< / code-tabs >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
`AppModule` now has the following qualities:
2017-03-31 19:57:13 -04:00
2017-07-22 23:51:25 -04:00
`AppModule` 现在变得:
2017-03-06 05:43:33 -05:00
* A little smaller because many `src/app/root` classes have moved to other modules.
2017-07-22 23:51:25 -04:00
更小了。因为很多`src/app/root`下的类被移到了其它模块。
2017-03-06 05:43:33 -05:00
* Stable because you'll add future components and providers to other modules, not this one.
2017-07-22 23:51:25 -04:00
更稳定了。因为我们以后会在其它模块中添加组件和服务提供商,而不是这里。
2017-03-06 05:43:33 -05:00
* Delegated to imported modules rather than doing work.
2017-07-22 23:51:25 -04:00
导入其它模块并把任务委托给它们,而不是亲力亲为。
2017-03-06 05:43:33 -05:00
* Focused on its main task, orchestrating the app as a whole.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
聚焦于自己的主要任务:总指挥整个应用程序。
2017-02-22 13:09:39 -05:00
### A trimmer _ContactModule_
2017-07-22 23:51:25 -04:00
### 清理*ContactModule*
2017-02-22 13:09:39 -05:00
Here is the new `ContactModule` paired with the prior version:
2017-07-22 23:51:25 -04:00
这里是新的`ContactModule`与以前版本的对比:
2017-03-27 11:08:53 -04:00
< code-tabs >
< code-pane title = "src/app/contact/contact.module.ts (v4)" path = "ngmodule/src/app/contact/contact.module.ts" >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-pane >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< code-pane title = "src/app/contact/contact.module.ts (v3)" path = "ngmodule/src/app/contact/contact.module.3.ts" >
2017-02-22 13:09:39 -05:00
2017-03-27 11:08:53 -04:00
< / code-pane >
< / code-tabs >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Notice the following:
2017-03-31 19:57:13 -04:00
2017-07-22 23:51:25 -04:00
注意:
2017-02-22 13:09:39 -05:00
* The `AwesomePipe` and `HighlightDirective` are gone.
2017-07-22 23:51:25 -04:00
`AwesomePipe` 和`HighlightDirective`不见了。
2017-03-06 05:43:33 -05:00
* The imports include `SharedModule` instead of `CommonModule` and `FormsModule` .
2017-07-22 23:51:25 -04:00
导入`SharedModule`,不再导入`CommonModule`和`FormsModule`。
2017-03-06 05:43:33 -05:00
* The new version is leaner and cleaner.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
这个新版本更加精简和干净了。
2017-03-30 15:04:18 -04:00
2017-04-10 11:51:13 -04:00
< hr / >
2017-02-22 13:09:39 -05:00
{@a core-for-root}
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
## Configure core services with _CoreModule.forRoot_
2017-07-22 23:51:25 -04:00
## 用 *CoreModule.forRoot* 配置核心服务
2017-02-22 13:09:39 -05:00
A module that adds providers to the application can offer a facility for configuring those providers as well.
2017-07-22 23:51:25 -04:00
为应用添加服务提供商的模块也可以同时提供配置那些提供商的功能。
2017-03-06 05:43:33 -05:00
By convention, the `forRoot` static method both provides and configures services at the same time.
2017-02-22 13:09:39 -05:00
It takes a service configuration object and returns a
2017-04-30 16:10:32 -04:00
[ModuleWithProviders ](api/core/ModuleWithProviders ), which is
2017-03-06 05:43:33 -05:00
a simple object with the following properties:
2017-03-31 19:57:13 -04:00
2017-07-22 23:51:25 -04:00
按照约定,模块的静态方法***forRoot***可以同时提供并配置服务。
它接收一个服务配置对象,并返回一个[ModuleWithProviders](api/core/index/ModuleWithProviders-interface)。这个简单对象具有两个属性:
2017-03-06 05:43:33 -05:00
* `ngModule` : the `CoreModule` class
2017-07-22 23:51:25 -04:00
`ngModule` - `CoreModule` 类
2017-03-06 05:43:33 -05:00
* `providers` : the configured providers
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
`providers` - 配置好的服务提供商
2017-02-22 13:09:39 -05:00
The root `AppModule` imports the `CoreModule` and adds the `providers` to the `AppModule` providers.
2017-03-27 11:08:53 -04:00
2017-07-22 23:51:25 -04:00
根模块`AppModule`会导入`CoreModule`类并把它的`providers`添加到`AppModule`的服务提供商中。
2017-04-10 11:51:13 -04:00
< div class = "l-sub-section" >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
More precisely, Angular accumulates all imported providers before appending the items listed in `@NgModule.providers` .
This sequence ensures that whatever you add explicitly to the `AppModule` providers takes precedence
2017-03-27 11:08:53 -04:00
over the providers of imported modules.
2017-07-22 23:51:25 -04:00
更精确的说法是, Angular 会先累加所有导入的提供商,*然后才*把它们追加到`@NgModule.providers`中。
这样可以确保我们显式添加到`AppModule`中的那些提供商总是优先于从其它模块中导入的提供商。
2017-04-10 11:51:13 -04:00
< / div >
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-03-27 11:08:53 -04:00
Add a `CoreModule.forRoot` method that configures the core `UserService` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
现在添加`CoreModule.forRoot`方法,以便配置核心中的`UserService`。
2017-03-06 05:43:33 -05:00
You've extended the core `UserService` with an optional, injected `UserServiceConfig` .
2017-02-22 13:09:39 -05:00
If a `UserServiceConfig` exists, the `UserService` sets the user name from that config.
2017-07-22 23:51:25 -04:00
我们曾经用一个可选的、被注入的`UserServiceConfig`服务扩展过核心的`UserService`服务。
如果有`UserServiceConfig`, `UserService`就会据此设置用户名。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/core/user.service.ts" region = "ctor" title = "src/app/core/user.service.ts (constructor)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
Here's `CoreModule.forRoot` that takes a `UserServiceConfig` object:
2017-07-22 23:51:25 -04:00
这里的`CoreModule.forRoot`接收`UserServiceConfig`对象:
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/core/core.module.ts" region = "for-root" title = "src/app/core/core.module.ts (forRoot)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-03-06 05:43:33 -05:00
Lastly, call it within the `imports` list of the `AppModule` .
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
最后,我们在`AppModule`的`imports`*列表*中调用它。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/app.module.ts" region = "import-for-root" title = "src/app//app.module.ts (imports)" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
The app displays "Miss Marple" as the user instead of the default "Sherlock Holmes".
2017-07-22 23:51:25 -04:00
该应用不再显示默认的 “Sherlock Holmes”, 而是用 “Miss Marple” 作为用户名称。
2017-02-22 13:09:39 -05:00
2017-04-10 11:51:13 -04:00
< div class = "alert is-important" >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
Call `forRoot` only in the root application module, `AppModule` .
2017-03-06 05:43:33 -05:00
Calling it in any other module, particularly in a lazy-loaded module,
is contrary to the intent and can produce a runtime error.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
只在应用的根模块`AppModule`中调用`forRoot`。
如果在其它模块(特别是惰性加载模块)中调用它则违反了设计意图,并会导致运行时错误。
2017-02-22 13:09:39 -05:00
Remember to _import_ the result; don't add it to any other `@NgModule` list.
2017-07-22 23:51:25 -04:00
别忘了_导入_其返回结果, 而且不要把它添加到`@NgModule`的其它任何列表中。
2017-02-22 13:09:39 -05:00
2017-04-10 11:51:13 -04:00
< / div >
2017-02-22 13:09:39 -05:00
2017-03-30 15:04:18 -04:00
2017-04-10 11:51:13 -04:00
< hr / >
2017-02-22 13:09:39 -05:00
{@a prevent-reimport}
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
## Prevent reimport of the _CoreModule_
2017-07-22 23:51:25 -04:00
## 禁止多次导入*CoreModule*
2017-02-22 13:09:39 -05:00
Only the root `AppModule` should import the `CoreModule` .
2017-04-30 16:10:32 -04:00
[Bad things happen ](guide/ngmodule-faq#q-why-bad ) if a lazy-loaded module imports it.
2017-03-31 07:23:16 -04:00
<!-- CF: Again, this link goes to the top of the NgModule FAQs page.
2017-03-06 05:43:33 -05:00
It looks like it is supposed to go to a specific question/section within the page. -->
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
只有根模块`AppModule`才能导入`CoreModule`。
如果惰性加载模块导入了它,就会[出问题](cookbook/ngmodule-faq#q-why-it-is-bad)。
2017-03-06 05:43:33 -05:00
You could hope that no developer makes that mistake.
Or you can guard against it and fail fast by adding the following `CoreModule` constructor.
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
我们可以*祈祷*任何开发人员都不会犯错。
但是最好还是对它进行一些保护,以便让它“尽快出错”。只要把下列代码添加到`CoreModule`的构造函数中就可以了。
2017-03-31 19:57:13 -04:00
< code-example path = "ngmodule/src/app/core/core.module.ts" region = "ctor" title = "src/app/core/core.module.ts" linenums = "false" >
2017-03-27 11:08:53 -04:00
< / code-example >
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
The constructor tells Angular to inject the `CoreModule` into itself.
That seems dangerously circular.
2017-07-22 23:51:25 -04:00
这个构造函数会要求 Angular 把`CoreModule`注入自身。这看起来像一个危险的循环注入。
2017-03-06 05:43:33 -05:00
The injection would be circular if Angular looked for `CoreModule` in the _current_ injector.
The `@SkipSelf` decorator means "look for `CoreModule` in an ancestor injector, above me in the injector hierarchy."
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
确实,如果 Angular 在*当前*注入器中查阅`CoreModule`,这确实会是一个循环引用。
不过,`@SkipSelf`装饰器意味着“在当前注入器的所有祖先注入器中寻找`CoreModule`。”
2017-02-22 13:09:39 -05:00
If the constructor executes as intended in the `AppModule` ,
there is no ancestor injector that could provide an instance of `CoreModule` .
The injector should give up.
2017-07-22 23:51:25 -04:00
如果该构造函数在我们所期望的`AppModule`中运行,就没有任何祖先注入器能够提供`CoreModule`的实例,于是注入器会放弃查找。
2017-03-06 05:43:33 -05:00
By default, the injector throws an error when it can't find a requested provider.
2017-02-22 13:09:39 -05:00
The `@Optional` decorator means not finding the service is OK.
The injector returns `null` , the `parentModule` parameter is null,
and the constructor concludes uneventfully.
2017-07-22 23:51:25 -04:00
默认情况下,当注入器找不到想找的提供商时,会抛出一个错误。
但`@Optional`装饰器表示找不到该服务也无所谓。
于是注入器会返回`null`, `parentModule`参数也就被赋成了空值,而构造函数没有任何异常。
2017-03-06 05:43:33 -05:00
It's a different story if you improperly import `CoreModule` into a lazy-loaded module such as `HeroModule` (try it).
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
如果我们错误的把`CoreModule`导入了一个惰性加载模块(例如`HeroModule`)中,那就不一样了。
2017-03-06 05:43:33 -05:00
Angular creates a lazy-loaded module with its own injector, a _child_ of the root injector.
`@SkipSelf` causes Angular to look for a `CoreModule` in the parent injector, which this time is the root injector.
2017-02-22 13:09:39 -05:00
Of course it finds the instance imported by the root `AppModule` .
2017-03-31 19:57:13 -04:00
Now `parentModule` exists and the constructor throws the error.
2017-07-22 23:51:25 -04:00
Angular 创建一个惰性加载模块,它具有自己的注入器,它是根注入器的*子注入器*。
`@SkipSelf` 让 Angular 在其父注入器中查找`CoreModule`,这次,它的父注入器却是根注入器了(而上次父注入器是空)。
当然,这次它找到了由根模块`AppModule`导入的实例。
该构造函数检测到存在`parentModule`,于是抛出一个错误。
2017-05-08 23:47:34 -04:00
## Conclusion
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
### 总结
2017-02-22 13:09:39 -05:00
You made it! You can examine and download the complete source for this final version from the live example.
2017-07-22 23:51:25 -04:00
完工!你可以到下面的在线例子中试验它,并下载最终版本的全部源码。
2017-04-26 08:12:22 -04:00
< live-example embedded img = "guide/ngmodule/final-plunker.png" > < / live-example >
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
2017-05-08 23:47:34 -04:00
## Frequently asked questions
2017-02-22 13:09:39 -05:00
2017-07-22 23:51:25 -04:00
### 常见问题 (FAQ)
2017-03-06 05:43:33 -05:00
Now that you understand NgModules, you may be interested
2017-04-30 16:10:32 -04:00
in the companion [NgModule FAQs ](guide/ngmodule-faq "NgModule FAQs" ) page
2017-07-22 23:51:25 -04:00
with its ready answers to specific design and implementation questions.
现在,你已经理解了 Angular 的模块。可能你还会对烹饪宝典中的
[Angular 模块常见问题 ](cookbook/ngmodule-faq "Angular 模块常见问题" )感兴趣,
2017-07-29 12:03:22 -04:00
它解答了很多关于设计和实现方面的问题。