2016-05-06 10:42:01 -04:00
|
|
|
|
block includes
|
|
|
|
|
include ../_util-fns
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
|
|
|
|
:marked
|
|
|
|
|
An **Attribute** directive changes the appearance or behavior of a DOM element.
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
**属性**型指令用于改变一个 DOM 元素的外观或行为。
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2016-10-13 18:42:23 -04:00
|
|
|
|
# Contents
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
# 目录
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
|
|
|
|
* [Directives overview](#directive-overview)
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
[指令概览](#directive-overview)
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
2016-10-13 18:42:23 -04:00
|
|
|
|
* [Build a simple attribute directive](#write-directive)
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
[创建简单的属性型指令](#write-directive)
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
2016-10-13 18:42:23 -04:00
|
|
|
|
* [Apply the attribute directive to an element in a template](#apply-directive)
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
[应用属性型指令到模板中的元素](#apply-directive)
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
* [Respond to user-initiated events](#respond-to-user)
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
[响应用户引发的事件](#respond-to-user)
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
* [Pass values into the directive with an _@Input_ data binding](#bindings)
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
[使用数据绑定把值传到指令中](#bindings)
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
* [Bind to a second property](#second-property)
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
[绑定第二个属性](#second-property)
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-05-19 01:33:02 -04:00
|
|
|
|
|
2017-04-22 21:34:51 -04:00
|
|
|
|
Try the <live-example title="Attribute Directive example"></live-example>.
|
|
|
|
|
|
|
|
|
|
试试<live-example title="Attribute Directive example"></live-example>。
|
2016-05-20 19:18:58 -04:00
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
.l-main-section#directive-overview
|
2016-10-13 18:42:23 -04:00
|
|
|
|
:marked
|
2015-11-19 19:59:22 -05:00
|
|
|
|
## Directives overview
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-05-18 05:01:12 -04:00
|
|
|
|
## 指令概览
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
There are three kinds of directives in Angular:
|
2016-10-18 07:10:12 -04:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
在 Angular 中有三种类型的指令:
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-10-13 18:42:23 -04:00
|
|
|
|
1. Components—directives with a template.
|
2017-03-03 04:20:27 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
组件 — 拥有模板的指令
|
2017-03-03 04:20:27 -05:00
|
|
|
|
|
2016-10-13 18:42:23 -04:00
|
|
|
|
1. Structural directives—change the DOM layout by adding and removing DOM elements.
|
2017-03-03 04:20:27 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
结构型指令 — 通过添加和移除 DOM 元素改变 DOM 布局的指令
|
2017-03-03 04:20:27 -05:00
|
|
|
|
|
2017-02-20 21:05:10 -05:00
|
|
|
|
1. Attribute directives—change the appearance or behavior of an element, component, or another directive.
|
2017-03-03 04:20:27 -05:00
|
|
|
|
|
2017-04-15 09:03:04 -04:00
|
|
|
|
属性型指令 — 改变元素、组件或其它指令的外观和行为的指令。
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
|
|
|
|
*Components* are the most common of the three directives.
|
2017-02-20 21:05:10 -05:00
|
|
|
|
You saw a component for the first time in the [QuickStart](../quickstart.html) guide.
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2016-11-26 16:43:16 -05:00
|
|
|
|
*组件*是这三种指令中最常用的。
|
2016-11-27 05:41:55 -05:00
|
|
|
|
你在[快速起步](../quickstart.html#root-component)例子中第一次见到组件。
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2017-02-20 18:29:42 -05:00
|
|
|
|
*Structural Directives* change the structure of the view.
|
2017-02-06 22:06:13 -05:00
|
|
|
|
Two examples are [NgFor](template-syntax.html#ngFor) and [NgIf](template-syntax.html#ngIf).
|
|
|
|
|
Learn about them in the [Structural Directives](structural-directives.html) guide.
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
*结构型*指令修改视图的结构。例如,[NgFor](template-syntax.html#ngFor) 和 [NgIf](template-syntax.html#ngIf)。
|
2017-04-15 09:03:04 -04:00
|
|
|
|
要了解更多,参见[结构型指令](structural-directives.html) guide。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2017-02-20 18:29:42 -05:00
|
|
|
|
*Attribute directives* are used as attributes of elements.
|
2017-03-07 13:23:18 -05:00
|
|
|
|
The built-in [NgStyle](template-syntax.html#ngStyle) directive in the
|
|
|
|
|
[Template Syntax](template-syntax.html) guide, for example,
|
2015-11-19 19:59:22 -05:00
|
|
|
|
can change several element styles at the same time.
|
2016-10-18 07:10:12 -04:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
*属性型*指令改变一个元素的外观或行为。例如,内置的 [NgStyle](template-syntax.html#ngStyle) 指令可以同时修改元素的多个样式。
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
.l-main-section#write-directive
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
|
|
|
|
## Build a simple attribute directive
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
## 创建一个简单的属性型指令
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-10-13 18:42:23 -04:00
|
|
|
|
An attribute directive minimally requires building a controller class annotated with
|
|
|
|
|
`@Directive`, which specifies the selector that identifies
|
|
|
|
|
the attribute.
|
2015-11-19 19:59:22 -05:00
|
|
|
|
The controller class implements the desired directive behavior.
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
属性型指令至少需要一个带有`@Directive`装饰器的控制器类。该装饰器指定了一个用于标识属性的选择器。
|
|
|
|
|
控制器类实现了指令需要的指令行为。
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2017-02-20 21:05:10 -05:00
|
|
|
|
This page demonstrates building a simple _myHighlight_ attribute
|
2016-10-13 18:42:23 -04:00
|
|
|
|
directive to set an element's background color
|
2017-02-20 21:05:10 -05:00
|
|
|
|
when the user hovers over that element. You can apply it like this:
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
2017-04-15 09:03:04 -04:00
|
|
|
|
本章展示了如何创建一个简单的属性型指令 _myHighlight_ ,当用户把鼠标悬停在一个元素上时,改变它的背景色。你可以这样用它:
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
+makeExcerpt('src/app/app.component.1.html', 'applied', '')
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
|
|
|
|
:marked
|
2016-10-13 18:42:23 -04:00
|
|
|
|
### Write the directive code
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
### 编写指令代码
|
2016-03-13 15:50:50 -04:00
|
|
|
|
|
2017-02-20 21:05:10 -05:00
|
|
|
|
Follow the [setup](setup.html) instructions for creating a new local project
|
2017-03-30 19:13:42 -04:00
|
|
|
|
named <code>attribute-directives</code>.
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
|
|
|
|
按照[开发环境](setup.html)的说明,创建一个名叫<code>attribute-directives</code>的项目文件夹。
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
Create the following source file in the indicated folder:
|
2017-04-15 09:03:04 -04:00
|
|
|
|
|
|
|
|
|
在指定的文件夹下创建下列源码文件:
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2017-02-02 13:38:17 -05:00
|
|
|
|
+makeExample('src/app/highlight.directive.1.ts')
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2017-04-15 09:03:04 -04:00
|
|
|
|
:marked
|
|
|
|
|
The `import` statement specifies symbols from the Angular `core`:
|
|
|
|
|
|
|
|
|
|
`import`语句指定了从 Angular 的`core`库导入的一些符号。
|
|
|
|
|
|
|
|
|
|
1. `Directive` provides the functionality of the `@Directive` decorator.
|
|
|
|
|
|
|
|
|
|
`Directive`提供`@Directive`装饰器功能。
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
2017-04-15 09:03:04 -04:00
|
|
|
|
1. `ElementRef` [injects](dependency-injection.html) into the directive's constructor
|
|
|
|
|
so the code can access the DOM element.
|
|
|
|
|
|
|
|
|
|
`ElementRef`[注入](dependency-injection.html)到指令构造函数中。这样代码就可以访问 DOM 元素了。
|
|
|
|
|
|
|
|
|
|
1. `Input` allows data to flow from the binding expression into the directive.
|
|
|
|
|
|
|
|
|
|
`Input`将数据从绑定表达式传达到指令中。
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
2017-04-15 09:03:04 -04:00
|
|
|
|
Next, the `@Directive` decorator function contains the directive metadata in a configuration object
|
|
|
|
|
as an argument.
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2017-04-15 09:03:04 -04:00
|
|
|
|
然后,`@Directive`装饰器函数以配置对象参数的形式,包含了指令的元数据。
|
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2016-05-06 10:42:01 -04:00
|
|
|
|
`@Directive` requires a CSS selector to identify
|
2016-10-13 18:42:23 -04:00
|
|
|
|
the HTML in the template that is associated with the directive.
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
`@Directive`装饰器需要一个 CSS 选择器,以便从模板中识别出关联到这个指令的 HTML。
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-05-06 10:42:01 -04:00
|
|
|
|
The [CSS selector for an attribute](https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors)
|
2015-11-19 19:59:22 -05:00
|
|
|
|
is the attribute name in square brackets.
|
2016-10-13 18:42:23 -04:00
|
|
|
|
Here, the directive's selector is `[myHighlight]`.
|
2017-04-15 09:03:04 -04:00
|
|
|
|
Angular locates all elements in the template that have an attribute named `myHighlight`.
|
|
|
|
|
|
|
|
|
|
[用于 attribute 的 CSS 选择器](https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors)就是属性名称加方括号。
|
2016-12-05 02:28:34 -05:00
|
|
|
|
这里,指令的选择器是`[myHighlight]`,Angular 将会在模板中找到所有带`myHighlight`属性的元素。
|
2017-04-15 09:03:04 -04:00
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
.l-sub-section
|
|
|
|
|
:marked
|
|
|
|
|
### Why not call it "highlight"?
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
### 为什么不直接叫做 "highlight"?
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-10-13 18:42:23 -04:00
|
|
|
|
Though *highlight* is a more concise name than *myHighlight* and would work,
|
|
|
|
|
a best practice is to prefix selector names to ensure
|
2017-03-07 13:23:18 -05:00
|
|
|
|
they don't conflict with standard HTML attributes.
|
2017-02-20 21:05:10 -05:00
|
|
|
|
This also reduces the risk of colliding with third-party directive names.
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
尽管*highlight* 是一个比 *myHighlight* 更简洁的名字,而且它确实也能工作。
|
|
|
|
|
但是最佳实践是在选择器名字前面添加前缀,以确保它们不会与标准 HTML 属性冲突。
|
2016-10-17 17:48:30 -04:00
|
|
|
|
它同时减少了与第三方指令名字发生冲突的危险。
|
2015-12-28 20:55:13 -05:00
|
|
|
|
|
2016-10-13 18:42:23 -04:00
|
|
|
|
Make sure you do **not** prefix the `highlight` directive name with **`ng`** because
|
2017-03-07 13:23:18 -05:00
|
|
|
|
that prefix is reserved for Angular and using it could cause bugs that are difficult to diagnose.
|
|
|
|
|
For a simple demo, the short prefix, `my`, helps distinguish your custom directive.
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
确认你**没有**给`highlight`指令添加**`ng`**前缀。
|
|
|
|
|
那个前缀属于 Angular,使用它可能导致难以诊断的 bug。例如,这个简短的前缀`my`可以帮助你区分自定义指令。
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2017-03-07 13:23:18 -05:00
|
|
|
|
After the `@Directive` metadata comes the directive's controller class,
|
|
|
|
|
called `HighlightDirective`, which contains the logic for the directive.
|
2017-03-30 19:13:42 -04:00
|
|
|
|
Exporting `HighlightDirective` makes it accessible to other components.
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
|
|
|
|
`@Directive`元数据之后就是该指令的控制器类,名叫`HighlightDirective`,它包含该指令的逻辑。
|
|
|
|
|
然后导出`HighlightDirective`,以便让它能从其它组件中访问到。
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
Angular creates a new instance of the directive's controller class for
|
2016-12-02 19:54:27 -05:00
|
|
|
|
each matching element, injecting an Angular `ElementRef`
|
2016-01-26 16:42:17 -05:00
|
|
|
|
into the constructor.
|
2016-10-13 18:42:23 -04:00
|
|
|
|
`ElementRef` is a service that grants direct access to the DOM element
|
2016-12-02 19:54:27 -05:00
|
|
|
|
through its `nativeElement` property.
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
Angular 会为每个匹配的元素创建一个指令控制器类的实例,并把 Angular 的`ElementRef`和`Renderer`注入进构造函数。
|
|
|
|
|
`ElementRef`是一个服务,它赋予我们通过它的`nativeElement`属性直接访问 DOM 元素的能力。
|
|
|
|
|
`Renderer`服务允许通过代码设置元素的样式。
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
.l-main-section#apply-directive
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
|
|
|
|
## Apply the attribute directive
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-06-02 11:57:35 -04:00
|
|
|
|
## 使用属性型指令
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
To use the new `HighlightDirective`, create a template that
|
2016-12-19 20:12:42 -05:00
|
|
|
|
applies the directive as an attribute to a paragraph (`<p>`) element.
|
2017-02-20 21:05:10 -05:00
|
|
|
|
In Angular terms, the `<p>` element is the attribute **host**.
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
要使用这个新的`HighlightDirective`,创建一个模板,把这个指令作为属性应用到一个段落(`p`)元素上。
|
2016-12-05 02:28:34 -05:00
|
|
|
|
用 Angular 的话说,`<p>`元素就是这个属性型指令的**宿主**。
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
2017-03-30 19:13:42 -04:00
|
|
|
|
Put the template in its own <code>app.component.html</code>
|
2017-03-07 13:23:18 -05:00
|
|
|
|
file that looks like this:
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
|
|
|
|
我们把这个模板放到它的<code>app.component.html</code>文件中,就像这样:
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExample('src/app/app.component.1.html')
|
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2016-10-13 18:42:23 -04:00
|
|
|
|
Now reference this template in the `AppComponent`:
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
现在,在`AppComponent`中引用这个模板:
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
+makeExample('src/app/app.component.ts')
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2016-10-13 18:42:23 -04:00
|
|
|
|
Next, add an `import` statement to fetch the `Highlight` directive and
|
|
|
|
|
add that class to the `declarations` NgModule metadata. This way Angular
|
|
|
|
|
recognizes the directive when it encounters `myHighlight` in the template.
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
接下来,添加了一个`import`语句来获得`Highlight`指令类,并把这个类添加到 NgModule 元数据的`declarations`数组中。
|
|
|
|
|
这样,当 Angular 在模板中遇到`myHighlight`时,就能认出这是指令了。
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
+makeExample('src/app/app.module.ts')
|
2017-04-15 09:03:04 -04:00
|
|
|
|
|
2016-08-09 12:38:25 -04:00
|
|
|
|
:marked
|
2016-10-13 18:42:23 -04:00
|
|
|
|
Now when the app runs, the `myHighlight` directive highlights the paragraph text.
|
|
|
|
|
|
2016-05-19 07:23:01 -04:00
|
|
|
|
运行应用,就会看到我们的指令确实高亮了段落中的文本。
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
figure.image-display
|
|
|
|
|
img(src="/resources/images/devguide/attribute-directives/first-highlight.png" alt="First Highlight")
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
2016-01-26 16:42:17 -05:00
|
|
|
|
.l-sub-section
|
|
|
|
|
:marked
|
2016-10-13 18:42:23 -04:00
|
|
|
|
### Your directive isn't working?
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-05-19 01:33:02 -04:00
|
|
|
|
### 你的指令没生效?
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2017-04-15 03:34:47 -04:00
|
|
|
|
Did you remember to add the directive to the `declarations` attribute of `@NgModule`?
|
2017-03-07 13:23:18 -05:00
|
|
|
|
It is easy to forget!
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2016-09-26 22:15:33 -04:00
|
|
|
|
你记着设置`@NgModule`的`declarations`数组了吗?它很容易被忘掉。
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2016-01-26 16:42:17 -05:00
|
|
|
|
Open the console in the browser tools and look for an error like this:
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-05-18 09:41:03 -04:00
|
|
|
|
打开浏览器调试工具的控制台,会看到像这样的错误信息:
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
2016-05-06 10:42:01 -04:00
|
|
|
|
code-example(format="nocode").
|
2016-01-26 16:42:17 -05:00
|
|
|
|
EXCEPTION: Template parse errors:
|
2016-08-09 12:38:25 -04:00
|
|
|
|
Can't bind to 'myHighlight' since it isn't a known property of 'p'.
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-01-26 16:42:17 -05:00
|
|
|
|
:marked
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Angular detects that you're trying to bind to *something* but it can't find this directive
|
2017-02-20 18:29:42 -05:00
|
|
|
|
in the module's `declarations` array.
|
|
|
|
|
After specifying `HighlightDirective` in the `declarations` array,
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Angular knows it can apply the directive to components declared in this module.
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
Angular 检测到你正在尝试绑定到*某些东西*,但它不认识。所以它在`declarations`元数据数组中查找。
|
|
|
|
|
把`HighlightDirective`列在元数据的这个数组中,Angular 就会检查对应的导入语句,从而找到`highlight.directive.ts`,并了解`myHightlight`的功能。
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2017-02-20 18:29:42 -05:00
|
|
|
|
To summarize, Angular found the `myHighlight` attribute on the `<p>` element.
|
2016-12-19 20:12:42 -05:00
|
|
|
|
It created an instance of the `HighlightDirective` class and
|
|
|
|
|
injected a reference to the `<p>` element into the directive's constructor
|
|
|
|
|
which sets the `<p>` element's background style to yellow.
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
总结:Angular 在`<p>`元素上发现了一个`myHighlight`属性。
|
2016-05-18 09:41:03 -04:00
|
|
|
|
然后它创建了一个`HighlightDirective`类的实例,并把所在元素的引用注入到了指令的构造函数中。
|
2016-05-19 01:33:02 -04:00
|
|
|
|
在构造函数中,我们把`<p>`元素的背景设置为了黄色。
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
.l-main-section#respond-to-user
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2016-10-13 18:42:23 -04:00
|
|
|
|
## Respond to user-initiated events
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
## 响应用户引发的事件
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2016-10-13 18:42:23 -04:00
|
|
|
|
Currently, `myHighlight` simply sets an element color.
|
2016-12-19 20:12:42 -05:00
|
|
|
|
The directive could be more dynamic.
|
|
|
|
|
It could detect when the user mouses into or out of the element
|
|
|
|
|
and respond by setting or clearing the highlight color.
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
当前,`myHighlight`只是简单的设置元素的颜色。
|
2016-11-26 16:43:16 -05:00
|
|
|
|
这个指令应该在用户鼠标悬浮一个元素时,设置它的颜色。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Begin by adding `HostListener` to the list of imported symbols;
|
2017-02-08 16:02:18 -05:00
|
|
|
|
add the `Input` symbol as well because you'll need it soon.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2017-04-15 03:34:47 -04:00
|
|
|
|
先把`HostListener`加进导入列表中,同时再添加`Input`符号,因为我们很快就要用到它。
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/highlight.directive.ts', 'imports', '')
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
2017-03-07 13:23:18 -05:00
|
|
|
|
Then add two eventhandlers that respond when the mouse enters or leaves,
|
2017-03-30 19:13:42 -04:00
|
|
|
|
each adorned by the `HostListener` decorator.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
然后使用`HostListener`装饰器添加两个事件处理器,它们会在鼠标进入或离开时进行响应。
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/highlight.directive.2.ts','mouse-methods', '')
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
2017-03-30 19:13:42 -04:00
|
|
|
|
The `@HostListener` decorator lets you subscribe to events of the DOM
|
2017-03-07 13:23:18 -05:00
|
|
|
|
element that hosts an attribute directive, the `<p>` in this case.
|
2016-05-06 10:42:01 -04:00
|
|
|
|
|
2017-02-26 02:04:21 -05:00
|
|
|
|
`@HostListener`装饰器引用属性型指令的宿主元素,在这个例子中就是`<p>`。
|
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
.l-sub-section
|
|
|
|
|
:marked
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Of course you could reach into the DOM with standard JavaScript and and attach event listeners manually.
|
|
|
|
|
There are at least three problems with _that_ approach:
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2017-02-26 02:04:21 -05:00
|
|
|
|
当然,你可以通过标准的JavaScript方式手动给宿主 DOM 元素附加一个事件监听器。
|
2016-10-17 17:48:30 -04:00
|
|
|
|
但这种方法至少有三个问题:
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2016-10-13 18:42:23 -04:00
|
|
|
|
1. You have to write the listeners correctly.
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
必须正确的书写事件监听器。
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
1. The code must *detach* the listener when the directive is destroyed to avoid memory leaks.
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
当指令被销毁的时候,必须*拆卸*事件监听器,否则会导致内存泄露。
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
1. Talking to DOM API directly isn't a best practice.
|
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
必须直接和 DOM API 打交道,应该避免这样做。
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2017-03-30 19:13:42 -04:00
|
|
|
|
The handlers delegate to a helper method that sets the color on the DOM element, `el`,
|
2016-12-19 20:12:42 -05:00
|
|
|
|
which you declare and initialize in the constructor.
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-03-26 12:18:13 -04:00
|
|
|
|
|
2017-04-15 04:13:16 -04:00
|
|
|
|
这些处理器委托给了一个辅助方法,它用于为DOM元素设置颜色,`el`就是你在构造器中声明和初始化过的。
|
2016-03-26 12:18:13 -04:00
|
|
|
|
|
2017-04-15 03:34:47 -04:00
|
|
|
|
+makeExcerpt('src/app/highlight.directive.2.ts (constructor)', 'ctor')
|
2017-04-15 09:03:04 -04:00
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Here's the updated directive in full:
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
下面是修改后的指令代码:
|
|
|
|
|
|
2017-02-02 13:38:17 -05:00
|
|
|
|
+makeExample('src/app/highlight.directive.2.ts')
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2016-10-13 18:42:23 -04:00
|
|
|
|
Run the app and confirm that the background color appears when the mouse hovers over the `p` and
|
2017-04-15 03:34:47 -04:00
|
|
|
|
disappears as it moves out.We run the app and confirm that the background color appears as we move the mouse over the `p` and
|
2015-11-19 19:59:22 -05:00
|
|
|
|
disappears as we move out.
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
运行本应用并确认:当把鼠标移到`p`上的时候,背景色就出现了,而移开的时候,它消失了。
|
2017-04-15 09:03:04 -04:00
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
figure.image-display
|
|
|
|
|
img(src="/resources/images/devguide/attribute-directives/highlight-directive-anim.gif" alt="Second Highlight")
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
.l-main-section#bindings
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2016-12-19 20:12:42 -05:00
|
|
|
|
## Pass values into the directive with an _@Input_ data binding
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-12-05 02:28:34 -05:00
|
|
|
|
## 使用数据绑定向指令传递值
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Currently the highlight color is hard-coded _within_ the directive. That's inflexible.
|
2017-02-20 21:05:10 -05:00
|
|
|
|
In this section, you give the developer the power to set the highlight color while applying the directive.
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2017-02-26 02:04:21 -05:00
|
|
|
|
现在的高亮颜色是硬编码在指令中的,这不够灵活。
|
|
|
|
|
我们应该让指令的使用者可以在模板中通过绑定来设置颜色。
|
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Start by adding a `highlightColor` property to the directive class like this:
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
我们先把`highlightColor`属性添加到指令类中,就像这样:
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/highlight.directive.2.ts (highlightColor)','color')
|
2016-06-30 20:24:23 -04:00
|
|
|
|
|
2016-05-06 10:42:01 -04:00
|
|
|
|
a#input
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2016-12-19 20:12:42 -05:00
|
|
|
|
### Binding to an _@Input_ property
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
### 绑定到_@Input_属性
|
2016-12-19 20:12:42 -05:00
|
|
|
|
|
2017-03-30 19:13:42 -04:00
|
|
|
|
Notice the `@Input` decorator. It adds metadata to the class that makes the directive's `highlightColor` property available for binding.
|
2017-02-20 18:29:42 -05:00
|
|
|
|
|
2017-02-26 02:04:21 -05:00
|
|
|
|
注意看`@Input`装饰器。它往类上添加了一些元数据,从而让该指令的`highlightColor`能用于绑定。
|
|
|
|
|
|
2017-02-20 18:29:42 -05:00
|
|
|
|
It's called an *input* property because data flows from the binding expression _into_ the directive.
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Without that input metadata, Angular rejects the binding; see [below](#why-input "Why add @Input?") for more about that.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
它之所以称为*输入*属性,是因为数据流是从绑定表达式流向指令内部的。
|
|
|
|
|
如果没有这个元数据,Angular就会拒绝绑定,参见[稍后](#why-input "为什么要添加@Input?")了解更多。
|
2016-12-19 20:12:42 -05:00
|
|
|
|
|
|
|
|
|
Try it by adding the following directive binding variations to the `AppComponent` template:
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
试试把下列指令绑定变量添加到`AppComponent`的模板中:
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/app.component.1.html (excerpt)', 'color-1')
|
2016-12-19 20:12:42 -05:00
|
|
|
|
|
|
|
|
|
:marked
|
|
|
|
|
Add a `color` property to the `AppComponent`.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
把`color`属性添加到`AppComponent`中:
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/app.component.1.ts (class)')
|
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Let it control the highlight color with a property binding.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
让它通过属性绑定来控制高亮颜色。
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/app.component.1.html (excerpt)', 'color-2')
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
|
|
|
|
That's good, but it would be nice to _simultaneously_ apply the directive and set the color _in the same attribute_ like this.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
很不错,但还可以更好。我们可以在应用该指令时在同一个属性中设置颜色,就像这样:
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/app.component.html', 'color', '')
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
2017-02-20 18:29:42 -05:00
|
|
|
|
The `[myHighlight]` attribute binding both applies the highlighting directive to the `<p>` element
|
2016-12-19 20:12:42 -05:00
|
|
|
|
and sets the directive's highlight color with a property binding.
|
|
|
|
|
You're re-using the directive's attribute selector (`[myHighlight]`) to do both jobs.
|
|
|
|
|
That's a crisp, compact syntax.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
`[myHighlight]`属性同时做了两件事:把这个高亮指令应用到了`<p>`元素上,并且通过属性绑定设置了该指令的高亮颜色。
|
|
|
|
|
我们复用了该指令的属性选择器`[myHighlight]`来同时完成它们。
|
|
|
|
|
这是清爽、简约的语法。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
You'll have to rename the directive's `highlightColor` property to `myHighlight` because that's now the color property binding name.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
我们还要把该指令的`highlightColor`改名为`myHighlight`,因为它是颜色属性目前的绑定名。
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/highlight.directive.2.ts (renamed to match directive selector)', 'color-2')
|
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2016-12-19 20:12:42 -05:00
|
|
|
|
This is disagreeable. The word, `myHighlight`, is a terrible property name and it doesn't convey the property's intent.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
这可不好。因为`myHighlight`是一个糟糕的属性名,而且不能反映该属性的意图。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
a#input-alias
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2016-12-19 20:12:42 -05:00
|
|
|
|
### Bind to an _@Input_ alias
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
### 绑定到_@Input_别名
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Fortunately you can name the directive property whatever you want _and_ **_alias it_** for binding purposes.
|
2017-04-15 09:03:04 -04:00
|
|
|
|
|
2017-02-26 02:04:21 -05:00
|
|
|
|
幸运的是,我们可以随意命名该指令的属性,并且**给它指定一个用于绑定的别名**。
|
2017-04-15 09:03:04 -04:00
|
|
|
|
|
|
|
|
|
Restore the original property name and specify the selector as the alias in the argument to `@Input`.
|
|
|
|
|
|
|
|
|
|
恢复原始属性名,并在`@Input`的参数中把选择器`myHighlight`指定为别名。
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
+makeExcerpt('src/app/highlight.directive.ts (color property with alias)', 'color')
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
|
|
|
|
_Inside_ the directive the property is known as `highlightColor`.
|
|
|
|
|
_Outside_ the directive, where you bind to it, it's known as `myHighlight`.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
在指令内部,该属性叫`highlightColor`,在外部,当我们绑定到它时,它叫`myHighlight`。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
You get the best of both worlds: the property name you want and the binding syntax you want:
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
这是最好的结果:理想的内部属性名,理想的绑定语法:
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/app.component.html', 'color', '')
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
|
|
|
|
Now that you're binding to `highlightColor`, modify the `onMouseEnter()` method to use it.
|
2017-03-07 13:23:18 -05:00
|
|
|
|
If someone neglects to bind to `highlightColor`, highlight in red:
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
现在,我们绑定到了`highlightColor`属性,并修改`onMouseEnter()`方法来使用它。
|
2017-04-15 03:34:47 -04:00
|
|
|
|
如果有人忘了绑定到`highlightColor`,那就用红色进行高亮。
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/highlight.directive.3.ts (mouse enter)', 'mouse-enter')
|
2016-12-19 20:12:42 -05:00
|
|
|
|
|
|
|
|
|
:marked
|
|
|
|
|
Here's the latest version of the directive class.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
这是最终版本的指令类。
|
|
|
|
|
|
2017-02-02 13:38:17 -05:00
|
|
|
|
+makeExcerpt('src/app/highlight.directive.3.ts')
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
|
|
|
|
## Write a harness to try it
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
## 写个测试程序试验下
|
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
|
|
|
|
It may be difficult to imagine how this directive actually works.
|
|
|
|
|
In this section, you'll turn `AppComponent` into a harness that
|
|
|
|
|
lets you pick the highlight color with a radio button and bind your color choice to the directive.
|
2017-04-15 04:02:59 -04:00
|
|
|
|
|
2017-02-26 02:04:21 -05:00
|
|
|
|
凭空想象该指令如何工作可不容易。
|
|
|
|
|
在本节,我们将把`AppComponent`改成一个测试程序,它让你可以通过单选按钮来选取高亮颜色,并且把你选取的颜色绑定到指令中。
|
2017-04-15 04:02:59 -04:00
|
|
|
|
|
2017-04-15 09:03:04 -04:00
|
|
|
|
Update <code>app.component.html</code> as follows:
|
2017-04-15 04:02:59 -04:00
|
|
|
|
|
2017-04-15 09:03:04 -04:00
|
|
|
|
把`app.component.html`修改成这样:
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
+makeExcerpt('src/app/app.component.html', 'v2', '')
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
|
|
|
|
Revise the `AppComponent.color` so that it has no initial value.
|
2017-04-15 04:02:59 -04:00
|
|
|
|
|
|
|
|
|
修改`AppComponent.color`,让它不再有初始值。
|
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/app.component.ts', 'class', '')
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
|
|
|
|
:marked
|
2017-04-15 09:03:04 -04:00
|
|
|
|
Here are the harness and directive in action.
|
|
|
|
|
|
|
|
|
|
下面是测试程序和指令的动图。
|
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
figure.image-display
|
2015-12-03 15:41:58 -05:00
|
|
|
|
img(src="/resources/images/devguide/attribute-directives/highlight-directive-v2-anim.gif" alt="Highlight v.2")
|
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
.l-main-section#second-property
|
2015-12-03 15:41:58 -05:00
|
|
|
|
:marked
|
|
|
|
|
## Bind to a second property
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
## 绑定到第二个属性
|
2017-04-15 03:34:47 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
This highlight directive has a single customizable property. In a real app, it may need more.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2017-02-26 08:47:56 -05:00
|
|
|
|
本例的指令只有一个可定制属性,真实的应用通常需要更多。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
At the moment, the default color—the color that prevails until
|
|
|
|
|
the user picks a highlight color—is hard-coded as "red".
|
2017-02-20 21:05:10 -05:00
|
|
|
|
Let the template developer set the default color.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
目前,默认颜色(它在用户选取了高亮颜色之前一直有效)被硬编码为红色。我们要让模板的开发者也可以设置默认颜色。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Add a second **input** property to `HighlightDirective` called `defaultColor`:
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2017-04-15 04:02:59 -04:00
|
|
|
|
把第二个名叫`defaultColor`的**输入**属性添加到`HighlightDirective`中:
|
|
|
|
|
|
2017-08-06 19:53:31 -04:00
|
|
|
|
+makeExcerpt('src/app/highlight.directive.ts', 'defaultColor', '')
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2015-12-16 22:38:07 -05:00
|
|
|
|
:marked
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Revise the directive's `onMouseEnter` so that it first tries to highlight with the `highlightColor`,
|
|
|
|
|
then with the `defaultColor`, and falls back to "red" if both properties are undefined.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
修改该指令的`onMouseEnter`,让它首先尝试使用`highlightColor`进行高亮,然后用`defaultColor`,如果它们都没有指定,那就用红色作为后备。
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/highlight.directive.ts', 'mouse-enter', '')
|
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
:marked
|
2016-12-19 20:12:42 -05:00
|
|
|
|
How do you bind to a second property when you're already binding to the `myHighlight` attribute name?
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
当已经绑定过`myHighlight`属性时,要如何绑定到第二个属性呢?
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
As with components, you can add as many directive property bindings as you need by stringing them along in the template.
|
2017-02-20 18:29:42 -05:00
|
|
|
|
The developer should be able to write the following template HTML to both bind to the `AppComponent.color`
|
2016-12-19 20:12:42 -05:00
|
|
|
|
and fall back to "violet" as the default color.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
像组件一样,你也可以绑定到指令的很多属性,只要把它们依次写在模板中就行了。
|
|
|
|
|
开发者可以绑定到`AppComponent.color`,并且用紫罗兰色作为默认颜色,代码如下:
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/app.component.html', 'defaultColor', '')
|
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
2017-02-20 18:29:42 -05:00
|
|
|
|
Angular knows that the `defaultColor` binding belongs to the `HighlightDirective`
|
2017-03-30 19:13:42 -04:00
|
|
|
|
because you made it _public_ with the `@Input` decorator.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
Angular之所以知道`defaultColor`绑定属于`HighlightDirective`,是因为我们已经通过`@Input`装饰器把它设置成了*公共*属性。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Here's how the harness should work when you're done coding.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
当这些代码完成时,测试程序工作时的动图如下:
|
|
|
|
|
|
2015-12-03 15:41:58 -05:00
|
|
|
|
figure.image-display
|
|
|
|
|
img(src="/resources/images/devguide/attribute-directives/highlight-directive-final-anim.gif" alt="Final Highlight")
|
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
.l-main-section
|
|
|
|
|
:marked
|
|
|
|
|
## Summary
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
## 总结
|
2016-11-26 16:43:16 -05:00
|
|
|
|
|
2016-10-13 18:42:23 -04:00
|
|
|
|
This page covered how to:
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2016-10-17 17:48:30 -04:00
|
|
|
|
本章介绍了如何:
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2017-03-31 18:25:27 -04:00
|
|
|
|
* [Build an **attribute directive**](#write-directive) that modifies the behavior of an element.
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
|
|
|
|
[构建一个**属性型指令**](#write-directive),它用于修改一个元素的行为。
|
|
|
|
|
|
2017-03-31 18:25:27 -04:00
|
|
|
|
* [Apply the directive](#apply-directive) to an element in a template.
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
|
|
|
|
[把一个指令应用到](#apply-directive)模板中的某个元素上。
|
|
|
|
|
|
2017-03-31 18:25:27 -04:00
|
|
|
|
* [Respond to **events**](#respond-to-user) that change the directive's behavior.
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
|
|
|
|
[响应**事件**](#respond-to-user)以改变指令的行为。
|
|
|
|
|
|
2017-03-31 18:25:27 -04:00
|
|
|
|
* [**Bind** values to the directive](#bindings).
|
2017-02-26 08:44:00 -05:00
|
|
|
|
|
|
|
|
|
[把值**绑定**到指令中](#bindings)。
|
|
|
|
|
|
2015-11-19 19:59:22 -05:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
The final source code follows:
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2016-05-18 09:41:03 -04:00
|
|
|
|
最终的源码如下:
|
2015-11-19 19:59:22 -05:00
|
|
|
|
+makeTabs(
|
2017-02-02 13:38:17 -05:00
|
|
|
|
`attribute-directives/ts/src/app/app.component.ts,
|
|
|
|
|
attribute-directives/ts/src/app/app.component.html,
|
|
|
|
|
attribute-directives/ts/src/app/highlight.directive.ts,
|
|
|
|
|
attribute-directives/ts/src/app/app.module.ts,
|
|
|
|
|
attribute-directives/ts/src/main.ts,
|
|
|
|
|
attribute-directives/ts/src/index.html
|
2015-11-19 19:59:22 -05:00
|
|
|
|
`,
|
2016-12-19 20:12:42 -05:00
|
|
|
|
'',
|
2017-02-02 13:38:17 -05:00
|
|
|
|
`app/app.component.ts,
|
|
|
|
|
app/app.component.html,
|
|
|
|
|
app/highlight.directive.ts,
|
|
|
|
|
app/app.module.ts,
|
2016-01-26 16:42:17 -05:00
|
|
|
|
main.ts,
|
2015-11-19 19:59:22 -05:00
|
|
|
|
index.html
|
|
|
|
|
`)
|
2015-12-16 22:38:07 -05:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
|
|
|
|
You can also experience and download the <live-example title="Attribute Directive example"></live-example>.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
你还可以体验和下载<live-example title="属性型指令范例"></live-example>.
|
2015-12-16 22:38:07 -05:00
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
.l-main-section#why-input
|
2015-12-16 22:38:07 -05:00
|
|
|
|
:marked
|
2016-12-19 20:12:42 -05:00
|
|
|
|
### Appendix: Why add _@Input_?
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
### 附录:为什么要加*@Input*?
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
In this demo, the `hightlightColor` property is an ***input*** property of
|
|
|
|
|
the `HighlightDirective`. You've seen it applied without an alias:
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
在这个例子中`hightlightColor`是`HighlightDirective`的一个***输入型***属性。我们见过它没有用别名时的代码:
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/highlight.directive.2.ts', 'color', '')
|
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
|
|
|
|
You've seen it with an alias:
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
也见过用别名时的代码:
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/highlight.directive.ts', 'color', '')
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
2017-03-30 19:13:42 -04:00
|
|
|
|
Either way, the `@Input` decorator tells Angular that this property is
|
2016-12-19 20:12:42 -05:00
|
|
|
|
_public_ and available for binding by a parent component.
|
|
|
|
|
Without `@Input`, Angular refuses to bind to the property.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
无论哪种方式,`@Input`装饰器都告诉Angular,该属性是*公共的*,并且能被父组件绑定。
|
|
|
|
|
如果没有`@Input`,Angular就会拒绝绑定到该属性。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2017-02-20 18:29:42 -05:00
|
|
|
|
You've bound template HTML to component properties before and never used `@Input`.
|
2016-12-19 20:12:42 -05:00
|
|
|
|
What's different?
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
但我们以前也曾经把模板HTML绑定到组件的属性,而且从来没有用过`@Input`。
|
|
|
|
|
差异何在?
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
The difference is a matter of trust.
|
|
|
|
|
Angular treats a component's template as _belonging_ to the component.
|
|
|
|
|
The component and its template trust each other implicitly.
|
|
|
|
|
Therefore, the component's own template may bind to _any_ property of that component,
|
2017-03-30 19:13:42 -04:00
|
|
|
|
with or without the `@Input` decorator.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
差异在于信任度不同。
|
|
|
|
|
Angular把组件的模板看做*从属于*该组件的。
|
|
|
|
|
组件和它的模板默认会相互信任。
|
|
|
|
|
这也就是意味着,组件自己的模板可以绑定到组件的*任意*属性,无论是否使用了`@Input`装饰器。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
But a component or directive shouldn't blindly trust _other_ components and directives.
|
|
|
|
|
The properties of a component or directive are hidden from binding by default.
|
|
|
|
|
They are _private_ from an Angular binding perspective.
|
2017-03-30 19:13:42 -04:00
|
|
|
|
When adorned with the `@Input` decorator, the property becomes _public_ from an Angular binding perspective.
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Only then can it be bound by some other component or directive.
|
2017-04-15 09:03:04 -04:00
|
|
|
|
|
2017-02-26 02:04:21 -05:00
|
|
|
|
但组件或指令不应该盲目的信任其它组件或指令。
|
|
|
|
|
因此组件或指令的属性默认是不能被绑定的。
|
|
|
|
|
从Angular绑定机制的角度来看,它们是*私有*的,而当添加了`@Input`时,它们变成了*公共*的
|
|
|
|
|
只有这样,它们才能被其它组件或属性绑定。
|
2017-04-15 09:03:04 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
You can tell if `@Input` is needed by the position of the property name in a binding.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
你可以根据属性名在绑定中出现的位置来判定是否要加`@Input`。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
* When it appears in the template expression to the ***right*** of the equals (=),
|
2017-03-30 19:13:42 -04:00
|
|
|
|
it belongs to the template's component and does not require the `@Input` decorator.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2017-04-15 09:03:04 -04:00
|
|
|
|
当它出现在等号***右侧***的模板表达式中时,它属于模板所在的组件,不需要`@Input`装饰器。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
* When it appears in **square brackets** ([ ]) to the **left** of the equals (=),
|
2017-03-07 13:23:18 -05:00
|
|
|
|
the property belongs to some _other_ component or directive;
|
2017-03-30 19:13:42 -04:00
|
|
|
|
that property must be adorned with the `@Input` decorator.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2017-04-15 09:03:04 -04:00
|
|
|
|
当它出现在等号**左边**的**方括号([ ])**中时,该属性属于*其它*组件或指令,它必须带有`@Input` 装饰器。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
Now apply that reasoning to the following example:
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
|
|
|
|
试用此原理分析下列范例:
|
2017-03-07 13:23:18 -05:00
|
|
|
|
|
|
|
|
|
+makeExcerpt('src/app/app.component.html', 'color', '')
|
|
|
|
|
|
2016-12-19 20:12:42 -05:00
|
|
|
|
:marked
|
2017-02-20 18:29:42 -05:00
|
|
|
|
* The `color` property in the expression on the right belongs to the template's component.
|
2017-03-07 13:23:18 -05:00
|
|
|
|
The template and its component trust each other.
|
2017-03-30 19:13:42 -04:00
|
|
|
|
The `color` property doesn't require the `@Input` decorator.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2017-04-15 09:03:04 -04:00
|
|
|
|
`color`属性位于右侧的绑定表达式中,它属于模板所在的组件。
|
2017-02-26 02:04:21 -05:00
|
|
|
|
该模板和组件相互信任。因此`color`不需要`@Input`装饰器。
|
2016-10-13 18:42:23 -04:00
|
|
|
|
|
2017-03-07 13:23:18 -05:00
|
|
|
|
* The `myHighlight` property on the left refers to an _aliased_ property of the `HighlightDirective`,
|
|
|
|
|
not a property of the template's component. There are trust issues.
|
2017-03-30 19:13:42 -04:00
|
|
|
|
Therefore, the directive property must carry the `@Input` decorator.
|
2017-02-26 02:04:21 -05:00
|
|
|
|
|
2017-04-15 09:03:04 -04:00
|
|
|
|
`myHighlight`属性位于左侧,它引用了`MyHighlightDirective`中一个*带别名的*属性,它不是模板所属组件的一部分,因此存在信任问题。
|
2017-02-26 02:04:21 -05:00
|
|
|
|
所以,该属性必须带`@Input`装饰器。
|