angular-cn/public/docs/ts/latest/guide/template-syntax.jade

1176 lines
58 KiB
Plaintext
Raw Normal View History

include ../../../../_includes/_util-fns
:marked
2015-10-16 23:39:30 -04:00
# Template Syntax
Our Angular application manages what the user sees and does through the interaction of a Component class instance and its user-facing template.
2015-10-16 23:39:30 -04:00
Many of us are familiar with the Component/Template duality from our experience with Model-View-Controller or Model-View-ViewModel. In Angular, the Component plays the part of the Controller/ViewModel and the Template represents the view.
2015-10-16 23:39:30 -04:00
Lets find out what it takes to write a Template for our view.
2015-10-16 23:39:30 -04:00
Well cover these basic elements of Template Syntax
2015-10-16 23:39:30 -04:00
>[HTML](#html)
2015-10-16 23:39:30 -04:00
>[Interpolation](#interpolation)
2015-10-16 23:39:30 -04:00
>[Template expressions](#template-expressions)
2015-10-16 23:39:30 -04:00
>[Binding syntax](#binding-syntax)
2015-10-16 23:39:30 -04:00
>[Property Binding](#property-binding)
2015-10-16 23:39:30 -04:00
>[Attribute, Class and Style Bindings](#other-bindings)
2015-10-16 23:39:30 -04:00
>[Event Binding](#event-binding)
2015-10-16 23:39:30 -04:00
>[Two-way data binding with `NgModel`](#ng-model)
2015-10-16 23:39:30 -04:00
>[Built-in Directives](#directives)
2015-10-16 23:39:30 -04:00
>[* and <template>](#star-template)
2015-10-19 23:14:51 -04:00
>[Local template variables](#local-vars)
2015-10-16 23:39:30 -04:00
>[Input and Output Properties](#inputs-outputs)
>[Template Expression Operators](#expression-operators)
[Live Example](/resources/live-examples/template-syntax/ts/src/plnkr.html).
2015-10-16 23:39:30 -04:00
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
## HTML
HTML is the language of the Angular template. Our “[QuickStart](./quickstart.html)” application had a template that was pure HTML
+makeExample('template-syntax/ts/src/app/app.component.html', 'my-first-app')(format=".")
:marked
2015-10-16 23:39:30 -04:00
Almost all HTML syntax is valid template syntax. The `<script>` element is a notable exception; it is forbidden in order to eliminate any possibility of JavaScript injection attacks (in practice it is simply ignored).
2015-10-16 23:39:30 -04:00
Some legal HTML doesnt make much sense in a template. The `<html>`, `<body>` and `<base>` elements have no useful role in our repertoire. Pretty much everything else is fair game.
2015-10-16 23:39:30 -04:00
We can extend the HTML vocabulary of our templates with Components and Directives that appear as new elements and attributes. And we are about to learn how to get and set DOM values dynamically through data binding.
2015-10-16 23:39:30 -04:00
Lets turn to the first form of data binding - interpolation - to see how much richer Template HTML can be.
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
## Interpolation
We met the double-curly braces of interpolation, `{{` and `}}`, early in our Angular education.
+makeExample('template-syntax/ts/src/app/app.component.html', 'first-interpolation')(format=".")
:marked
2015-10-16 23:39:30 -04:00
We use interpolation to weave calculated strings into the text between HTML element tags and within attribute assignments.
+makeExample('template-syntax/ts/src/app/app.component.html', 'title+image')(format=".")
:marked
The material between the braces is often the name of a component property. Angular replaces that name with the
2015-10-16 23:39:30 -04:00
string value of the corresponding component property. In this example, Angular evaluates the `title` and `heroImageUrl` properties
and "fills in the blanks", displaying first a bold application title and then a heroic image.
More generally, the material between the braces is a **template expression** that Angular first **evaluates**
2015-10-16 23:39:30 -04:00
and then **converts to a string**. The following interpolation illustrates the point by adding the two numbers within braces:
+makeExample('template-syntax/ts/src/app/app.component.html', 'sum-1')(format=".")
:marked
The expression can invoke methods of the host component as we do here with `getVal()`:
+makeExample('template-syntax/ts/src/app/app.component.html', 'sum-2')(format=".")
:marked
Angular evaluates all expressions in double curly braces, converts the expression results to strings, and concatenates them with neighboring literal strings. Finally,
it assigns this composite interpolated result to an **element or directive property**.
2015-10-16 23:39:30 -04:00
We appear to be inserting the result between element tags and assigning to attributes.
It's convenient to think so and we rarely suffer for this mistake.
But it is not literally true. Interpolation is actually a special syntax that Angular converts into a
2015-10-16 23:39:30 -04:00
[Property Binding](#property-binding) as we explain below. The implications and consequences can be profound.
But before we explore that assertion, well take a closer look at template expressions.
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
## Template Expressions
We saw a template expression within the interpolation braces.
Well see template expressions again in [Property Bindings](#property-binding) (`[property]="expression"`) and
2015-10-16 23:39:30 -04:00
[Event Bindings](#event-binding) (`(event)="expression"`).
2015-10-16 23:39:30 -04:00
A template expression is a JavaScript-like expression. Many JavaScript expressions are legal template expressions but not all and there are a few language extensions. Notable differences include:
* Assignment is prohibited except in [Event Bindings](#event-binding).
* The `new` operator is prohibited.
* The bit-wise operators, `|` and `&`, are not supported.
* Increment and decrement operators, `++` and `--`, arent supported.
* [Template expression operators](#expression-operators), such as `|` and `?.`, add new meaning.
Perhaps more surprising, we cannot refer to anything in the global namespace.
We cant refer to `window` or `document`. We cant call `console.log`.
2015-10-16 23:39:30 -04:00
We are restricted to referencing members of the expression context.
2015-10-16 23:39:30 -04:00
The **expression context** is typically the **component instance** supporting a particular template instance.
.l-sub-section
:marked
We speak of component and template ***instances***. Angular creates multiple concrete instances from a component class and its template.
2015-10-16 23:39:30 -04:00
For example, we may define a component and template to display a list item and tell Angular to create new instances of that component/template pair for each item in a list. Theres a separate, independent expression context for each item in that list as well.
:marked
When we see `title` wrapped in double-curly braces, <code>{{ }}</code>.,
2015-10-16 23:39:30 -04:00
we know that it is a property of a parent component.
When we see `[disabled]="isUnchanged"` or `(click)="onCancel()”`,
2015-10-16 23:39:30 -04:00
we know we are referring to that component's `isUnchanged` property and `onCancel` method respectively.
The component itself is usually the expression *context* in which case
the template expression usually references that component.
The expression context may include an object other than the component.
A [local template variable](#local-vars) is one such supplemental context object;
well discuss that option below.
Another is the **`$event`** variable that contains information about an event raised on an element;
2015-10-16 23:39:30 -04:00
well talk about that when we consider [Event Bindings](#event-binding).
.l-sub-section
:marked
2015-10-16 23:39:30 -04:00
Although we can write quite complex template expressions, we strongly discourage that practice. Most readers frown on JavaScript in the HTML. A property name or method call should be the norm. An occasional Boolean negation (`!`) is OK. Otherwise, confine application and business logic to the component itself where it will be easier to develop and test.
:marked
2015-10-16 23:39:30 -04:00
Now that we have a feel for template expressions, were ready to learn about the varieties of data binding syntax beyond Interpolation.
2015-10-16 23:39:30 -04:00
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
<a id="binding-syntax"></a>
## Binding syntax overview
Data binding is a mechanism for coordinating what users see with application data values. While we could push values to and pull values from HTML,
the application is easier to write, read, and maintain if we turn these chores over to a binding framework.
2015-10-16 23:39:30 -04:00
We simply declare bindings between the HTML and the data properties and let the framework do the work.
2015-10-16 23:39:30 -04:00
Angular provides many kinds of data binding and well discuss each of them in this chapter.
First we'll take a high level view of Angular data binding and its syntax.
2015-10-16 23:39:30 -04:00
We can group all bindings into three categories by the direction in which data flows. Each category has its distinctive syntax:
table
tr
th Data Direction
th Syntax
th Binding Type
tr
td One way<br>from data source<br>to view target
td
code-example(format="" ).
{{expression}}
[target] = "expression"
bind-target = "expression"
td.
2015-10-16 23:39:30 -04:00
Interpolation<br>
Property<br>
Attribute<br>
Class<br>
Style
tr
td One way<br>from view target<br>to data source
td
code-example(format="" ).
(target) = "expression"
on-target = "expression"
td Event
tr
td Two way
td
code-example(format="" ).
[(target)] = "expression"
bindon-target = "expression"
td Two-way
:marked
2015-10-16 23:39:30 -04:00
**Template expressions must be surrounded in quotes**
except for interpolation expressions which must not be quoted.
2015-10-16 23:39:30 -04:00
All binding types except interpolation have a **target name** to the left of the equal sign, either surrounded by punctuation (`[]`, `()`) or preceded by a prefix (`bind-`, `on-`, `bindon-`).
What is that target? Before we can answer that question, we must challenge ourselves to look at Template HTML in a new way.
2015-10-16 23:39:30 -04:00
### A New Mental Model
2015-10-16 23:39:30 -04:00
With all the power of data binding and our ability to extend the HTML vocabulary
with custom markup, it is tempting to think of Template HTML as “HTML Plus”.
Well it is “HTML Plus”.
But its also significantly different than the HTML were used to.
2015-10-16 23:39:30 -04:00
We really need a new mental model.
In the normal course of HTML development, we create a visual structure with HTML elements and
we modify those elements by setting element attributes with string constants.
+makeExample('template-syntax/ts/src/app/app.component.html', 'img+button')(format=".")
:marked
2015-10-16 23:39:30 -04:00
We still create a structure and initialize attribute values this way in Angular templates.
Then we learn to create new elements with Components that encapsulate HTML
and drop them into our templates as if they were native HTML elements
+makeExample('template-syntax/ts/src/app/app.component.html', 'hero-detail-1')(format=".")
:marked
2015-10-16 23:39:30 -04:00
Thats “HTML Plus”.
Now we start to learn about data binding. The first binding we meet might look like this:
+makeExample('template-syntax/ts/src/app/app.component.html', 'disabled-button-1')(format=".")
:marked
Well get to that peculiar bracket notation in a moment. Looking beyond it,
2015-10-16 23:39:30 -04:00
our intuition tells us that were binding to the button's `disabled` attribute and setting
it to the current value of the components `isUnchanged` property.
Our intuition is wrong! Our everyday HTML mental model is misleading us.
In fact, once we start data binding, we are no longer working with HTML *attributes*. We aren't setting attributes.
We are setting the *properties* of DOM elements, Components, and Directives.
.l-sub-section
:marked
### HTML Attribute vs. DOM Property
The distinction between an HTML attribute and a DOM property is crucial to understanding how Angular binding works.
**Attributes are defined by HTML. Properties are defined by DOM (the Document Object Model).**
* A few HTML attributes have 1:1 mapping to properties. `id` is one example.
* Some HTML attributes don't have corresponding properties. `colspan` is one example.
* Some DOM properties don't have corresponding attributes. `textContent` is one example.
* Many HTML attributes appear to map to properties ... but not the way we think!
That last category can be especially confusing ... until we understand this general rule:
**Attributes *initialize* DOM properties and then they are done.
Property values may change; attribute values don't.**
For example, when the browser renders `<input type="text" value="Bob">`, it creates a
corresponding DOM node with a `value` property *initialized* to "Bob".
When the user enters "Sally" into the input box, the DOM element `value` *property* becomes "Sally".
But the HTML `value` *attribute* remains unchanged as we discover if we ask the input element
about that attribute: `input.getAttribute('value') // returns "Bob"`
The HTML attribute `value` specifies the *initial* value; the DOM `value` property is the *current* value.
The `disabled` attribute is another peculiar example. A button's `disabled` *property* is
`false` by default so the button is enabled.
When we add the `disabled` *attribute*, it's presence alone initializes the button's `disabled` *property* to `true`
so the button is disabled.
Adding and removing the `disabled` *attribute* disables and enables the button. The value of the *attribute* is irrelevant
which is why we cannot enable a button by writing `<button disabled="false">Still Disabled</button>`.
Setting the button's `disabled` *property* (e.g. with an Angular binding) disables or enables the button.
The value of the *property* matters.
**The HTML attribute and the DOM property are not the same thing even when they have the same name.**
:marked
2015-10-16 23:39:30 -04:00
This is so important, well say it again.
2015-10-16 23:39:30 -04:00
**Template binding works with *properties* and *events*, not *attributes*.**
2015-10-16 23:39:30 -04:00
.callout.is-helpful
header A world without attributes
:marked
In the world of Angular 2, the only role of attributes is to initialize element and directive state.
When we data bind, we're dealing exclusively with element and directive properties and events.
2015-10-16 23:39:30 -04:00
Attributes effectively disappear.
:marked
With this model firmly in mind, we are ready to discuss the variety of target properties to which we may bind.
2015-10-16 23:39:30 -04:00
### Binding Targets
The **target of a data binding** is something in the DOM.
Depending on the binding type, the target can be an
(element | component | directive) property, an
(element | component | directive) event, or (rarely) an attribute name.
2015-10-16 23:39:30 -04:00
The following table summarizes:
<div width="90%">
table
tr
th Binding Type
th Target
th Examples
tr
td Property
td.
2015-10-16 23:39:30 -04:00
Element&nbsp;Property<br>
Component&nbsp;Property<br>
Directive&nbsp;property
td
+makeExample('template-syntax/ts/src/app/app.component.html', 'property-binding-syntax-1')(format=".")
2015-10-16 23:39:30 -04:00
tr
td Event
td.
2015-10-16 23:39:30 -04:00
Element&nbsp;Event<br>
Component&nbsp;Event<br>
Directive&nbsp;Event
td
+makeExample('template-syntax/ts/src/app/app.component.html', 'event-binding-syntax-1')(format=".")
2015-10-16 23:39:30 -04:00
tr
td Two-way
td.
2015-10-16 23:39:30 -04:00
Directive&nbsp;Event
Property
td
+makeExample('template-syntax/ts/src/app/app.component.html', '2-way-binding-syntax-1')(format=".")
2015-10-16 23:39:30 -04:00
tr
td Attribute
td.
2015-10-16 23:39:30 -04:00
Attribute
(the&nbsp;exception)
td
+makeExample('template-syntax/ts/src/app/app.component.html', 'attribute-binding-syntax-1')(format=".")
2015-10-16 23:39:30 -04:00
tr
td Class
td.
2015-10-16 23:39:30 -04:00
<code>class</code> Property
td
+makeExample('template-syntax/ts/src/app/app.component.html', 'class-binding-syntax-1')(format=".")
2015-10-16 23:39:30 -04:00
tr
td Style
td.
2015-10-16 23:39:30 -04:00
<code>style</code> Property
td
+makeExample('template-syntax/ts/src/app/app.component.html', 'style-binding-syntax-1')(format=".")
</div>
:marked
2015-10-16 23:39:30 -04:00
### Spelling target names
.alert.is-critical.
These are current rules. New rules will apply as of alpha 49
:marked
The target name whether between punctuation or after a prefix -
should be spelled with **lowercase**. Although we can spell it in mixed-case,
2015-10-16 23:39:30 -04:00
Angular sees it only after it has been forced to lowercase.
Thats a problem when we need to reference a property with a mixed-case name.
HTML elements have many mixed-case properties: `innerHTML`, `textContent`, `className` to name a few.
Our custom elements (e.g., `<hero-detail>`) may have mixed-case property names
2015-10-16 23:39:30 -04:00
(`HeroDetailComponent.isActive`).
2015-10-16 23:39:30 -04:00
Well be tempted to write bindings that target such properties in mixed-case:
+makeExample('template-syntax/ts/src/app/app.component.html', 'bad-mixed-case')(format=".")
:marked
2015-10-16 23:39:30 -04:00
Try it and the entire display goes blank. A debugger reveals the error:
code-example(format="", language="html").
Template parse errors:
Can't bind to 'textcontent' since it isn't a known native property in ...
:marked
Notice that it forced mixed-case "text**C**ontent" to lowercase "text**c**ontent".
The solution is to write the target property name in **lower kebab-case** (aka *dash-case*),
all lowercase with a dash before each former uppercase letter. We can correct the example as follows:
+makeExample('template-syntax/ts/src/app/app.component.html', 'kebab-case')(format=".")
2015-10-16 23:39:30 -04:00
.l-sub-section
:marked
According to this rule, we should write `[inner-h-t-m-l]` to access the elements `innerHTML` property.
2015-10-16 23:39:30 -04:00
Fortunately, the Angular template parser recognizes `inner-html` as an acceptable alias for `innerHTML`.
:marked
2015-10-16 23:39:30 -04:00
Lets descend from the architectural clouds and look at each of these binding types in concrete detail.
2015-10-16 23:39:30 -04:00
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
## Property Binding
We write a template **Property Binding** when we want to set a property of a view element to the value of a template expression.
The most common Property Binding sets an element property to a component property value as when
2015-10-16 23:39:30 -04:00
we bind the source property of an image element to the components `heroImageUrl` property.
+makeExample('template-syntax/ts/src/app/app.component.html', 'property-binding-1')(format=".")
:marked
2015-10-16 23:39:30 -04:00
… or disable a button when the component says that it `isUnchanged`.
+makeExample('template-syntax/ts/src/app/app.component.html', 'property-binding-2')(format=".")
:marked
2015-10-16 23:39:30 -04:00
… or set a property of a directive
+makeExample('template-syntax/ts/src/app/app.component.html', 'property-binding-3')(format=".")
:marked
2015-10-16 23:39:30 -04:00
… or set the model property of a custom component (a great way
for parent and child components to communicate)
+makeExample('template-syntax/ts/src/app/app.component.html', 'property-binding-4')(format=".")
:marked
2015-10-16 23:39:30 -04:00
People often describe Property Binding as “one way data binding” because it can flow a value in one direction, from a components data property to an element property.
### Binding Target
A name between enclosing square brackets identifies the target property. The target property in this example is the image elements `src` property.
+makeExample('template-syntax/ts/src/app/app.component.html', 'property-binding-1')(format=".")
:marked
2015-10-16 23:39:30 -04:00
Some developers prefer the `bind-` prefix alternative, known as the “canonical form”:
+makeExample('template-syntax/ts/src/app/app.component.html', 'property-binding-5')(format=".")
:marked
2015-10-16 23:39:30 -04:00
The target name is always the name of a property, even when it appears to be the name of something else. We see `src` and may think its the name of an attribute. No. Its the name of an image element property.
Element properties may be the more common targets,
but Angular looks first to see if the name is a property of a known directive
2015-10-16 23:39:30 -04:00
as it is in the following example:
+makeExample('template-syntax/ts/src/app/app.component.html', 'property-binding-3')(format=".")
2015-10-16 23:39:30 -04:00
.l-sub-section
:marked
Technically, Angular is matching the name to a directive [input](#inputs-outputs),
one of the property names listed in the directives `inputs` array or a property decorated with `@Input()`.
2015-10-16 23:39:30 -04:00
Such inputs map to the directives own properties.
:marked
2015-10-16 23:39:30 -04:00
If the name fails to match a property of a known directive or element, Angular reports an “unknown directive” error.
### Property Binding template expressions
Evaluation of the expression should have no visible side-effects. The expression language itself does its part to keep us safe. We cant assign a value to anything in a Property Binding expression nor use the increment and decorator operators.
2015-10-16 23:39:30 -04:00
Of course, our expression might invoke a property or method that has side-effects. Angular has no way of knowing that or stopping us.
The expression could call something like `getFoo()`. Only we know what `getFoo()` does.
2015-10-16 23:39:30 -04:00
If `getFoo()` changes something and we happen to be binding to that something, we risk an unpleasant experience. Angular may or may not display the changed value. Angular may detect the change and throw a warning error. Our general advice: stick to data properties and methods that return values and do no more.
2015-10-16 23:39:30 -04:00
The template expression should evaluate to a value of the type expected by the target property. Most native element properties do expect a string. The image `src` should be set to a string, an URL for the resource providing the image. On the other hand, the `disabled` property of a button expects a Boolean value so our expression should evaluate to `true` or `false`.
2015-10-16 23:39:30 -04:00
The `hero` property of the `HeroDetail` component expects a `Hero` object which is exactly what were sending in the Property Binding:
+makeExample('template-syntax/ts/src/app/app.component.html', 'property-binding-4')(format=".")
:marked
This is good news for the Angular developer.
2015-10-16 23:39:30 -04:00
If `hero` were an attribute we could not set it to a `Hero` object.
+makeExample('template-syntax/ts/src/app/app.component.html', 'property-binding-6')(format=".")
:marked
We can't set an attribute to an object. We can only set it to a string.
Internally, the attribute may be able to convert that string to an object before setting the like-named element property.
2015-10-16 23:39:30 -04:00
Thats good to know but not helpful to us when we're trying to pass a significant data object
from one component element to another.
The power of Property Binding is its ability to bypass the attribute and
2015-10-16 23:39:30 -04:00
set the element property directly with a value of the appropriate type.
2015-10-16 23:39:30 -04:00
### Property Binding or Interpolation?
We often have a choice between Interpolation and Property Binding. The following binding pairs do the same thing
+makeExample('template-syntax/ts/src/app/app.component.html', 'property-binding-v-interpolation')(format=".")
:marked
Interpolation is actually a convenient alternative for Property Binding in many cases.
In fact, Angular translates those Interpolations into the corresponding Property Bindings
2015-10-16 23:39:30 -04:00
before rendering the view.
There is no technical reason to prefer one form to the other.
We lean toward readability which tends to favor interpolation.
We suggest establishing coding style rules for the organization and choosing the form that
2015-10-16 23:39:30 -04:00
both conforms to the rules and feels most natural for the task at hand.
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
<a id="other-bindings"></a>
## Attribute, Class, and Style Bindings
The template syntax provides specialized one-way bindings for scenarios less well suited to Property Binding.
2015-10-16 23:39:30 -04:00
### Attribute Binding
We can set the value of an attribute directly with an **Attribute Binding**.
.l-sub-section
:marked
2015-10-16 23:39:30 -04:00
This is the only exception to the rule that a binding sets a target property. This is the only binding that creates and sets an attribute.
:marked
2015-10-16 23:39:30 -04:00
We have stressed throughout this chapter that setting an element property with a Property Binding is always preferred to setting the attribute with a string. Why does Angular offer Attribute Binding?
2015-10-16 23:39:30 -04:00
**We must use Attribute Binding when there is no element property to bind.**
2015-10-16 23:39:30 -04:00
Consider the [aria](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA),
[svg](https://developer.mozilla.org/en-US/docs/Web/SVG), and
table span attributes. They are pure attributes.
They do not correspond to element properties and they do not set element properties.
2015-10-16 23:39:30 -04:00
There are no property targets to bind to.
2015-10-16 23:39:30 -04:00
We become painfull aware of this fact when we try to write something like this:
code-example(language="html").
&lt;tr>&lt;td colspan="{{1+1}}">Three-Four&lt;/td>&lt;/tr>
:marked
2015-10-16 23:39:30 -04:00
… and get the error:
code-example(format="", language="html").
Template parse errors:
2015-10-16 23:39:30 -04:00
Can't bind to 'colspan' since it isn't a known native property
:marked
As the message says, the `<td>` element does not have a `colspan` property.
It has the "colspan" *attribute* but
interpolation and property binding can only set properties, not attributes.
2015-10-16 23:39:30 -04:00
We need an Attribute Binding to create and bind to such attributes.
Attribute Binding syntax resembles Property Binding.
Instead of an element property between brackets, we start with the keyword **`attr`**
followed by the name of the attribute and then set it with an expression that resolves to a string.
Here we bind `[attr.colspan]` to a calulated value:
+makeExample('template-syntax/ts/src/app/app.component.html', 'attrib-binding-colspan')(format=".")
:marked
2015-10-16 23:39:30 -04:00
Here's how the table renders:
<table border="1px">
<tr><td colspan="2">One-Two</td></tr>
<tr><td>Five</td><td>Six</td></tr>
2015-10-16 23:39:30 -04:00
</table>
One of the primary use cases for the Attribute Binding
2015-10-16 23:39:30 -04:00
is to set aria attributes as we see in this example
+makeExample('template-syntax/ts/src/app/app.component.html', 'attrib-binding-aria')(format=".")
:marked
2015-10-16 23:39:30 -04:00
### Class Binding
2015-10-16 23:39:30 -04:00
We can add and remove CSS class names from an elements `class` attribute with the **Class Binding**.
Class Binding syntax resembles Property Binding.
Instead of an element property between brackets, we start with the keyword `class` followed
by the name of a CSS class: `[class.class-name]`.
In the following examples we see how to add and remove the application's "special" class
with class bindings. We start by setting the attribute without binding:
+makeExample('template-syntax/ts/src/app/app.component.html', 'class-binding-1')(format=".")
:marked
We replace that with a binding to a string of the desired class names; this is an all-or-nothing, replacement binding.
+makeExample('template-syntax/ts/src/app/app.component.html', 'class-binding-2')(format=".")
:marked
Finally, we bind to a specific class name.
Angular adds the class when the template expression evaluates to something truthy and
removes the class name when the expression is falsey.
+makeExample('template-syntax/ts/src/app/app.component.html', 'class-binding-3')(format=".")
2015-10-16 23:39:30 -04:00
.l-sub-section
:marked
While this is a fine way to toggle a single class name,
2015-10-16 23:39:30 -04:00
we generally prefer the [NgClass directive](#ng-class) for managing multiple class names at the same time.
:marked
2015-10-16 23:39:30 -04:00
### Style Binding
2015-10-16 23:39:30 -04:00
We can set inline styles with a **Style Binding**.
Style Binding syntax resembles Property Binding.
Instead of an element property between brackets, we start with the key word `style`
followed by the name of a CSS style property: `[style.style-property]`.
+makeExample('template-syntax/ts/src/app/app.component.html', 'style-binding-1')(format=".")
:marked
2015-10-16 23:39:30 -04:00
Some Style Binding styles have unit extension. Here we conditionally set the `font-size` in “em” and “%” units .
+makeExample('template-syntax/ts/src/app/app.component.html', 'style-binding-2')(format=".")
2015-10-16 23:39:30 -04:00
.l-sub-section
:marked
While this is a fine way to set a single style,
we generally prefer the [NgStyle directive](#ng-style) when setting several inline styles at the same time.
2015-10-16 23:39:30 -04:00
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
## Event Binding
The bindings weve met so far flow data in one direction *from the component to an element*.
Users dont just stare at the screen. They enter text into a input box. They pick items from a list.
They click buttons. Such user actions may result in a flow of data in the opposite direction,
2015-10-16 23:39:30 -04:00
***from an element to the component***.
The only way to know about a user action is to listen for certain events such as
keystrokes, mouse movements, clicks and touches.
2015-10-16 23:39:30 -04:00
We declare our interest in user actions through Angular Event Binding.
2015-10-16 23:39:30 -04:00
The following Event Binding listens for the buttons click event and calls the component's `onSave()` method:
+makeExample('template-syntax/ts/src/app/app.component.html', 'event-binding-1')(format=".")
:marked
2015-10-16 23:39:30 -04:00
Event Binding syntax consists of a target event on the left of an equal sign and a template expression on the right: `(click)="onSave()"`
### Binding target
A **name between enclosing parentheses** identifies the target event. In the following example, the target is the buttons click event.
+makeExample('template-syntax/ts/src/app/app.component.html', 'event-binding-1')(format=".")
:marked
2015-10-16 23:39:30 -04:00
Some developers prefer the `on-` prefix alternative, known as the “canonical form”:
+makeExample('template-syntax/ts/src/app/app.component.html', 'event-binding-2')(format=".")
:marked
Element events may be the more common targets, but Angular looks first to see if the name matches an event property
2015-10-16 23:39:30 -04:00
of a known directive as it does in the following example:
+makeExample('template-syntax/ts/src/app/app.component.html', 'event-binding-3')(format=".")
:marked
If the name fails to match an element event or an output property of a known directive,
Angular reports an “unknown directive” error.
2015-10-16 23:39:30 -04:00
### $event and event handling expressions
In an Event Binding, Angular sets up an event handler for the target event.
When the event is raised, the handler executes the template expression.
2015-10-16 23:39:30 -04:00
The template expression typically involves a receiver that wants to do something
in response to the event such as take a value from the HTML control and store it
in a model.
2015-10-16 23:39:30 -04:00
The binding conveys information about the event including data values through
an **event object named `$event`**.
2015-10-16 23:39:30 -04:00
The shape of the $event object is determined by the target event itself.
If the target event is a native DOM element event, the `$event` is a
2015-10-16 23:39:30 -04:00
[DOM event object]( https://developer.mozilla.org/en-US/docs/Web/Events) with properties such as `target` and `target.value`.
2015-10-16 23:39:30 -04:00
Consider this example:
+makeExample('template-syntax/ts/src/app/app.component.html', 'without-NgModel')(format=".")
:marked
Were binding the input box `value` to a `firstName` property and were listening for changes by binding to the input boxs `input` event.
When the user makes changes, the `input` event is raised, and the binding executes the expression within a context that includes the DOM event object, `$event`.
We must follow the `$event.target.value` path to get the changed text so we can update the `firstName`
If the event belongs to a directive (remember: components are directives), `$event` has whatever shape the directive chose to produce.
Consider a `HeroDetailComponent` that produces `deleted` events with an `EventEmitter`.
+makeExample('template-syntax/ts/src/app/hero-detail.component.ts', 'deleted', 'HeroDetailComponent.ts (excerpt)')(format=".")
:marked
When something invokes the `onDeleted()` method, we "emit" a `Hero` object.
Now imagine a parent component that listens for that event with an Event Binding.
+makeExample('template-syntax/ts/src/app/app.component.html', 'event-binding-to-component')(format=".")
:marked
The event binding surfaces the *hero-to-delete* emitted by `HeroDetail` to the expression via the `$hero` variable.
We pass it along to the parent `onHeroDeleted()` method.
That method presumably knows how to delete the hero.
Evaluation of an Event Binding template expression may have side-effects as this one clearly does.
They are not just OK (unlike in property bindings); they are expected.
The expression could update the model thereby triggering other changes that percolate through the system, changes that
are ultimately displayed in this view and other views.
The event processing may result in queries and saves to a remote server. It's all good.
2015-10-16 23:39:30 -04:00
### Event bubbling and propagation
Angular invokes the event-handling expression if the event is raised by the current element or one of its child elements.
+makeExample('template-syntax/ts/src/app/app.component.html', 'event-binding-bubbling')(format=".")
:marked
2015-10-16 23:39:30 -04:00
Many DOM events, both [native](https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Overview_of_Events_and_Handlers ) and [custom](https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Creating_and_triggering_events ), “bubble” events up their ancestor tree of DOM elements until an event handler along the way prevents further propagation.
2015-10-16 23:39:30 -04:00
.l-sub-section
:marked
2015-10-16 23:39:30 -04:00
`EventEmitter` events dont bubble.
:marked
The result of an Event Binding expression determines if
[event propagation](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model/Examples#Example_5:_Event_Propagation)
continues or stops with the current element.
2015-10-16 23:39:30 -04:00
Event propagation stops if the binding expression returns a falsey value (as does a method with no return value).
Clicking the button in this next example triggers a save;
the click doesn't make it to the outer `<div>` so it's save is not called:
+makeExample('template-syntax/ts/src/app/app.component.html', 'event-binding-no-propagation')(format=".")
:marked
Propagation continues if the expression returns a truthy value. The click is heard both by the button
and the outer `<div>`, causing a double save:
+makeExample('template-syntax/ts/src/app/app.component.html', 'event-binding-propagation')(format=".")
2015-10-16 23:39:30 -04:00
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
<a name="ng-model"></a>
## Two-Way Binding with NgModel
When developing data entry forms we often want to both display a data property and update that property when the user makes changes.
2015-10-16 23:39:30 -04:00
The `NgModel` directive serves that purpose as seen in this example:
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgModel-1')(format=".")
:marked
2015-10-16 23:39:30 -04:00
If we prefer the “canonical” prefix form to the punctuation form, we can write
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgModel-2')(format=".")
:marked
2015-10-16 23:39:30 -04:00
Theres a story behind this construction, a story that builds on the Property and Event Binding techniques we learned previously.
We could have achieved the same result as `NgModel` with separate bindings to the
the `<input>` element's `value` property and `input` event.
+makeExample('template-syntax/ts/src/app/app.component.html', 'without-NgModel')(format=".")
:marked
Thats cumbersome. Who can remember what element property to set and what event reports user changes?
How do we extract the currently displayed text from the input box so we can update the data property?
Who wants to look that up each time?
That `ng-model` directive hides these onerous details. It wraps the elements `value` property, listens to the `input` event,
and raises its own event with the changed text ready for us to consume.
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgModel-3')(format=".")
:marked
Thats an improvement. It should be better.
We shouldn't have to mention the data property twice. Angular should be able to read the components data property and set it
with a single declaration &mdash; which it can with the `[{ }]` syntax:
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgModel-1')(format=".")
2015-10-16 23:39:30 -04:00
.l-sub-section
:marked
Internally, Angular maps the term, `ng-model`, to an `ng-model` input property and an
`ng-model-change` output property.
Thats a specific example of a more general pattern in which it matches `[(x)]` to an `x` input property
2015-10-16 23:39:30 -04:00
for Property Binding and an `x-change` output property for Event Binding.
2015-10-16 23:39:30 -04:00
We can write our own two-way binding directive that follows this pattern if we're ever in the mood to do so.
:marked
Is `[{ng-model}]` all we need? Is there ever a reason to fall back to its expanded form?
Well `NgModel` can only set the target property.
What if we need to do something more or something different when the user changes the value?
Let's try something silly like forcing the input value to uppercase.
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgModel-4')(format=".")
:marked
Here are all variations in action, including the uppercase version:
figure.image-display
img(src='/resources/images/devguide/template-syntax/ng-model-anim.gif' alt="NgModel variations")
:marked
2015-10-16 23:39:30 -04:00
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
<a name="directives"></a>
## Built-in Directives
Earlier versions of Angular included over seventy built-in directives.
The community contributed many more and individuals have created countless private directives for internal applications.
We dont need many of those directives in Angular 2.
Quite often we can achieve the same results with the more capable and expressive Angular 2 binding system.
2015-10-16 23:39:30 -04:00
Why create a directive to handle a click when we can write a simple binding such as this?
+makeExample('template-syntax/ts/src/app/app.component.html', 'event-binding-2')(format=".")
:marked
We still benefit from directives that simplify complex tasks.
2015-10-16 23:39:30 -04:00
Angular still ships with built-in directives; just not as many.
We will write our own directives; just not as many.
In this segment we review some of the most frequently used built-in directivest.
<a id="ng-class"></a>
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
### NgClass
We typically control how elements appear
by adding and removing CSS classes dynamically.
We can bind to `NgClass` to add or remove several classes simultaneously.
We prefer to use a [Class Binding](#class-binding) to add or remove a *single* class.
+makeExample('template-syntax/ts/src/app/app.component.html', 'class-binding-3a')(format=".")
:marked
The `NgClass` directive may be the better choice
when we want to add or remove *many* classes at the same time.
Our favorite way to apply `NgClass` is by binding it to a key:value control object. Each key of the object is a class name and its value is `true` if the class should be added, `false` if it should be removed.
Consider a component method such as `setClasses` that returns its approval of two class names:
+makeExample('template-syntax/ts/src/app/app.component.ts', 'setClasses')(format=".")
:marked
Now add an `NgClass` property binding to call it like this
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgClass-1')(format=".")
<a id="ng-style"></a>
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
### NgStyle
We may set inline styles dynamically based on the state of the component.
2015-10-16 23:39:30 -04:00
We bind to `NgStyle` to set many inline styles simultaneously.
We prefer to use a [Style Binding](#style-binding) to set a *single* style value.
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgStyle-1')(format=".")
:marked
The `NgStyle` directive may be the better choice
when we want to set *many* inline styles at the same time.
We apply `NgStyle` by binding it to a key:value control object.
Each key of the object is a style name and its value is whatever is appropriate for that style.
Consider a component method such as `setStyles` that returns an object defining three styles:
+makeExample('template-syntax/ts/src/app/app.component.ts', 'setStyles')(format=".")
:marked
Now add an `NgStyle` property binding to call it like this
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgStyle-2')(format=".")
<a id="ng-if"></a>
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
### NgIf
We can add an element sub-tree (an element and its children) to the DOM by binding an `NgIf` directive to a truthy expression.
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgIf-1')(format=".")
2015-10-16 23:39:30 -04:00
.alert.is-critical
:marked
The leading asterisk (\*) in front of `ng-if` is a critical part of this syntax.
See the section below on [\* and &lt;template>](#star-template).
:marked
Binding to a falsey expression removes the element sub-tree from the DOM.
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgIf-2')(format=".")
:marked
2015-10-16 23:39:30 -04:00
#### Visibility and NgIf are not the same
We can show and hide an element sub-tree (the element and its children) with a [Class](#class-binding) or a [Style](#style-binding) binding:
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgIf-3')(format=".")
:marked
2015-10-16 23:39:30 -04:00
Hiding a sub-tree is quite different from excluding a sub-tree with `NgIf`.
When we hide the element sub-tree, it remains in the DOM.
Components in the sub-tree are preserved along with their state.
Angular may continue to check for changes even to invisible properties.
The sub-tree may tie up substantial memory and computing resources.
When `NgIf` is `false`, Angular physically removes the element sub-tree from the DOM.
It destroys components in the sub-tree along with their state which may free up substantial resources
resulting in better performance for the user.
The show/hide technique is probably fine for small element trees.
We should be wary when hiding large trees; `NgIf` may be the safer choice. Always measure before leaping to conclusions.
<a id="ng-switch"></a>
.l-main-section
:marked
### NgSwitch
We bind to `NgSwitch` when we want to display *one* element tree (an element and its children)
from a *set* of possible elment trees based on some condition.
Angular only puts the *selected* element tree into the DOM.
2015-10-16 23:39:30 -04:00
Heres an example:
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgSwitch')(format=".")
:marked
2015-10-16 23:39:30 -04:00
We bind the parent `NgSwitch` element to an expression returning a “switch value”. The value is a string in this example but it can be a value of any type.
2015-10-16 23:39:30 -04:00
The parent `NgSwitch` element controls a set of child`<template>` elements. Each `<template>` wraps a candidate subtree. A template is either pegged to a “match value” expression or marked as the default template.
2015-10-16 23:39:30 -04:00
**At any particular moment, only one of these templates will be rendered**
2015-10-16 23:39:30 -04:00
If the templates “match value” equals the “switch value”, Angular adds the templates sub-tree to the DOM. If no template is a match and there is a default template, Angular adds the default templates sub-tree to the DOM. Angular removes and destroys the sub-trees of all other templates.
2015-10-16 23:39:30 -04:00
There are three related directives at work here.
1. `ng-switch` - bound to an expression that returns the switch value.
1. `ng-switch-when` - bound to an expression returning a match value.
1. `ng-switch-default` - a marker attribute on the default template.
<a id="ng-for"></a>
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
### NgFor
`NgFor` is a “repeater” directive. It will be familiar if weve written repeaters for other view engines.
Our goal is to present a list of items. We define a block of HTML that defines how a single item should be displayed.
We tell Angular to use that block as a template for rendering each item in the list.
Here is an example of `NgFor` applied to a simple `<div>`.
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgFor-1')(format=".")
:marked
We can apply an `NgFor` to a component element as well as we do in this example:
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgFor-2')(format=".")
2015-10-16 23:39:30 -04:00
.alert.is-critical
:marked
The leading asterisk (\*) in front of `ng-for` is a critical part of this syntax.
See the section below on [\* and &lt;template>](#star-template).
:marked
The text assigned to `*ng-for` is the instruction that guides the repeater process.
.l-sub-section
:marked
#### NgFor Micro-syntax
The string assigned to `*ng-for` is not a [template expression](#template-expressions).
Its a little language of its own called a “micro-syntax” that Angular interprets. In this example it means:
>*Take each hero in the `heroes` array, store it in the local `hero` variable, and make it available to the templated HTML
for each iteration*.
Angular translates this instruction into a new set of elements and bindings.
Well talk about this in the next section about templates.
:marked
In our two examples, the `ng-for` directive iterates over the `heroes` array returned by the parent components `heroes` property
and stamps out instances of the element to which it is applied.
Angular creates a fresh instance of the template for each hero in the array.
The (#) character before "hero" identifies a [local template variable](#local-vars) called `hero`.
We reference this variable within the template to access a heros properties as were doing in the interpolation
or we can pass it in a binding to a component element as we're doing with `hero-detail`.
#### NgFor with index
The `ng-for` directive supports an optional index that increases from 0 to the length of the array for each iteration.
We can capture that in another local template variable (`i`) and use it in our template too.
This next example stamps out rows that display like "1 - Hercules Son of Zeus":
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgFor-3')(format=".")
:marked
2015-10-16 23:39:30 -04:00
<a name="star-template"></a>
<a name="structural-directive"></a>
2015-10-16 23:39:30 -04:00
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
## * and &lt;template>
When we reviewed the `ng-for` and `ng-if` built-in directives we called out an oddity of the syntax, the asterisk (*) that appears before the directive name.
This is a bit of “**syntactic sugar**” that makes it easier to read and write directives that modify HTML layout
with the help of templates.
`NgFor`, `NgIf`, and `NgSwitch` all add and remove element subtrees that are wrapped in `<template>` tags.
With the [NgSwitch](#ng-switch) directive we always write the `<template>` tags explicitly as we saw [above](#ng-switch).
2015-10-16 23:39:30 -04:00
There isnt much choice; we define a different template for each switch choice
and let the directive render the template that matches the switch value.
[NgFor](#ng-for) and [NgIf](#ng-if) only need one template,
the *template-to-repeat* and the *template-to-include* respectively.
The (\*) prefix syntax is a convenient way for developers to skip the `<template>` wrapper tags and
focus directly on the HTML element to repeat or include.
Angular sees the (*) and expands the HTML into the `<template>` tags for us.
### Expanding `*ng-if`
We can do that ourselves if we wish. Instead of writing ...
+makeExample('template-syntax/ts/src/app/app.component.html', 'Template-1')(format=".")
:marked
2015-10-16 23:39:30 -04:00
… we can write:
+makeExample('template-syntax/ts/src/app/app.component.html', 'Template-2')(format=".")
:marked
Notice the (\*) is gone and we have a [Property Binding](#property-binding) to the `ng-if`
directive, applied in this case to the `<template>` rather than
2015-10-16 23:39:30 -04:00
the applications `hero-detail` component.
The `[hero]="currentHero"` binding remains on the child `<hero-detail>`
2015-10-16 23:39:30 -04:00
element inside the template. Angular does that too.
2015-10-16 23:39:30 -04:00
.callout.is-critical
header Remember the brackets!
:marked
Dont make the mistake of writing `ng-if="currentHero"`!
That syntax assigns the *string* value, "currentHero", to `ng-if`.
In JavaScript a non-empty string is a truthy value so `ng-if` would always be
`true` and Angular will always display the `hero-detail`
… even when there is no `currentHero`!
:marked
### Expanding `*ng-for`
A similar transformation applies to `*ng-for`. We can "de-sugar" the syntax ourselves and go from ...
+makeExample('template-syntax/ts/src/app/app.component.html', 'NgFor-2')(format=".")
:marked
2015-10-16 23:39:30 -04:00
... to
+makeExample('template-syntax/ts/src/app/app.component.html', 'Template-3')(format=".")
:marked
... and from there to
+makeExample('template-syntax/ts/src/app/app.component.html', 'Template-4')(format=".")
:marked
This is a bit more complex than `NgIf` because a repeater has more moving parts to configure.
In this case, we have to remember the `NgForOf` directive that identifies the list.
It should be clear why we prefer the `*ng-for` syntax to writing out this expanded HTML ourselves.
2015-10-16 23:39:30 -04:00
<a id="local-vars"></a>
2015-10-16 23:39:30 -04:00
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
## Local template variables
2015-10-16 23:39:30 -04:00
A **local template variable** is a vehicle for moving data across element lines.
We've seen the `#hero` local template variable several times in this chapter,
most prominently when writing [NgFor](#ng-for) repeaters.
In the [* and &lt;templates>](#star-template) segment we learned how Angular expands
an `*ng-for` on a component tag into a `<template>` that wraps the component.
+makeExample('template-syntax/ts/src/app/app.component.html', 'Template-4')(format=".")
:marked
The (#) prefix character in front of "hero" means that we're defining a `hero` variable.
2015-10-16 23:39:30 -04:00
.l-sub-section
:marked
Some folks don't like the (#) character.
The `var-` prefix is the “cannonical” alternative to "#". We could have declared our variable as `var-hero`.
:marked
We defined `hero` on the outer `<template>` element where it becomes the current hero item
as Angular iterates through the list of heroes.
The `hero` variable appears again in the binding on the inner `<hero-detail>` component element.
That's how each instance of the `<hero-detail>` gets its hero.
### Referencing a local template variable
We can reference a local template variable on the same element, on a sibling element, or on
any of its child elements.
2015-10-16 23:39:30 -04:00
Here are two other examples of creating and consuming a local template variable:
+makeExample('template-syntax/ts/src/app/app.component.html', 'var-phone')(format=".")
:marked
### How it gets its value
The value assigned to the variable depends upon the context.
When a directive is present on the element, as it is in the earlier NgFor `<hero-detail>` component example,
the directive sets the value. Accordingly, the `NgFor` directive
set the `hero` variable to a hero item from the `heroes` array.
When there is no directive present, as in phone and fax examples,
Angular sets the variable to the element on which it was defined.
We defined these variables on the `input` elements.
Were passing those `input` element objects across to the
button elements where they become arguments to the `call()` methods in the event bindings.
### Form variables
Let's look at one final example, a Form, the poster child for local template variables.
The HTML for a form can be quite involved as we saw in the [Forms](forms.html) chapter.
The following is a *simplified* example &mdash; and it's not simple at all.
+makeExample('template-syntax/ts/src/app/app.component.html', 'var-form')
:marked
A local template variable, `theForm`, appears three times in this example, separated
by a large amount of HTML.
+makeExample('template-syntax/ts/src/app/app.component.html', 'var-form-a')
:marked
What is the value of `theForm`?
It would be the [HTMLFormElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement)
if Angular hadn't taken it over.
It's actually the Angular built-in `Form` directive that wraps the native `HTMLFormElement`
and endows it with additional super powers such as the ability to
track the validity of user input.
2015-10-16 23:39:30 -04:00
This explains how we can disable the submit button by checking `theForm.form.valid`
and pass an object with rich information to the parent component's `onSubmit` method.
<a id="inputs-outputs"></a>
.l-main-section
:marked
## Input and Output Properties
We can only bind to **target directive** properties that are either **inputs** or **outputs**.
2015-10-16 23:39:30 -04:00
.l-sub-section
:marked
We're drawing a sharp distinction between a data binding **target** and a data binding **source**.
The target is to the *left* of the (=) in a binding expression.
The source is on the *right* of the (=).
Every member of a **source** directive (typically a component) is automatically available for binding.
We don't have to do anything special to access a component member in the quoted template expression
to the right of the (=).
We have *limited* access to members of a **target** directive (typically a component).
We can only bind to *input* and *output* properties of target components to the left of the (=).
Also remember that a *component is a directive*.
In this section, we use the terms "directive" and "component" interchangeably.
:marked
In this chapter weve focused mainly on binding to component members within template expressions
on the *right side of the binding declaration*.
A member in that position is a binding “data source”. It's not a target for binding.
2015-10-16 23:39:30 -04:00
In the following example, `iconUrl` and `onSave` are members of the `AppComponent`
referenced within template expressions to the *right* of the (=).
+makeExample('template-syntax/ts/src/app/app.component.html', 'io-1')(format=".")
:marked
They are *neither inputs nor outputs* of `AppComponent`. They are data sources for their bindings.
2015-10-16 23:39:30 -04:00
Now look at the `HeroDetailComponent` when it is the **target of a binding**.
+makeExample('template-syntax/ts/src/app/app.component.html', 'io-2')(format=".")
:marked
Both `HeroDetail.hero` and `HeroDetail.deleted` are on the **left side** of binding expressions.
`HeroDetail.hero` is the target of a Property Binding. `HeroDetail.deleted` is the target of an Event Binding.
**Data flow *into* the `HeroDetail.hero` target property** from the template expression.
2015-10-16 23:39:30 -04:00
Therefore `HeroDetail.hero` is an ***input*** property from the perspective of `HeroDetail`.
**Events stream *out* of the `HeroDetail.deleted` target property** and toward the receiver within the template expression.
Therefore `HeroDetail.deleted` is an ***output*** property from the perspective of `HeroDetail`.
When we peek inside `HeroDetailComponent` we see that these properties are marked
2015-10-16 23:39:30 -04:00
with decorators as input and output properties.
+makeExample('template-syntax/ts/src/app/hero-detail.component.ts', 'input-output-1')(format=".")
:marked
.l-sub-section
:marked
Alternatively, we can identify them in the `inputs` and `outputs` arrays
of the directive metadata as seen in this example:
+makeExample('template-syntax/ts/src/app/hero-detail.component.ts', 'input-output-2')(format=".")
<br>
:marked
We can specify an input/output property with a decorator or in one the metadata arrays &mdash; but not both.
:marked
### Aliasing input/output properties
Sometimes we want the public name of the property to be different from the internal name.
This is frequently the case with [Attribute Directives](attribute-directives.html).
Directive consumers expect to bind to the name of the directive.
For example, we expect to bind to the `myClick` event property of the `MyClickDirective`.
The directive name is often a poor choice for the the internal property name
because it rarely describes what the property does.
The corresponding `MyClickDirective` internal property is called `clicks`.
Fortunately, we can alias the internal name to meet the conventional needs of the directive's consumer.
We alias in decorator syntax like this:
+makeExample('template-syntax/ts/src/app/my-click.directive.ts', 'my-click-output-1')(format=".")
.l-sub-section
:marked
The equivalent aliasing with the `outputs` array requires a colon-delimited string with
the internal property name on the left and the public name on the right:
+makeExample('template-syntax/ts/src/app/my-click.directive.ts', 'my-click-output-2')(format=".")
<a id="expression-operators"></a>
2015-10-16 23:39:30 -04:00
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
## Template Expression Operators
The template expression language employs a subset of JavaScript syntax supplemented with some special operators
2015-11-01 00:13:18 -04:00
for specific scenarios. We'll cover two of them, "pipe" and "Elvis".
2015-10-16 23:39:30 -04:00
<a id="pipe"></a>
### The Pipe Operator ( | )
The result of an expression may require some transformation before were ready to use it in a binding. For example, we may wish to display a number as a currency, force text to uppercase, or filter a list and sort it.
Angular [Pipes](./pipes.html) are a good choice for small transformations such as these.
2015-10-16 23:39:30 -04:00
Pipes are simple functions that accept an input value and return a transformed value.
They are easy to apply within template expressions using the **pipe operator ( | )**:
+makeExample('template-syntax/ts/src/app/app.component.html', 'pipes-1')(format=".")
:marked
2015-10-16 23:39:30 -04:00
The pipe operator passes the result of an expression on the left to a pipe function on the right.
We can chain expressions through multiple pipes
+makeExample('template-syntax/ts/src/app/app.component.html', 'pipes-2')(format=".")
:marked
And we can configure them too:
+makeExample('template-syntax/ts/src/app/app.component.html', 'pipes-3')(format=".")
:marked
The `json` pipe is particular helpful for debugging our bindings:
+makeExample('template-syntax/ts/src/app/app.component.html', 'pipes-json')(format=".")
:marked
2015-10-16 23:39:30 -04:00
<a id="elvis"></a>
### The Elvis Operator ( ?. ) and null property paths
The Angular **“Elvis” operator ( ?. )** is a fluent and convenient way to guard against null and undefined values in property paths.
Here it is, protecting against a view render failure if the `currentHero` is null.
+makeExample('template-syntax/ts/src/app/app.component.html', 'elvis-2')(format=".")
:marked
2015-10-16 23:39:30 -04:00
Lets elaborate on the problem and this particular solution.
2015-10-16 23:39:30 -04:00
What happens when the following data bound `title` property is null?
+makeExample('template-syntax/ts/src/app/app.component.html', 'elvis-1')(format=".")
:marked
2015-10-16 23:39:30 -04:00
The view still renders but the displayed value is blank; we see only "`The title is`" with nothing after it.
That is reasonable behavior. At least the app doesn't crash.
Suppose the template expression involves a property path as in this next example
where were displaying the `firstName` of a null hero.
2015-10-16 23:39:30 -04:00
code-example(format="" language="html").
The null hero's name is {{nullHero.firstName}}
:marked
2015-10-16 23:39:30 -04:00
JavaScript throws a null reference error and so does Angular:
code-example(format="" language="html").
TypeError: Cannot read property 'firstName' of null in [null]
:marked
Worse, the *entire view disappears*.
2015-10-16 23:39:30 -04:00
We could claim that this is reasonable behavior if we believed that the `hero` property must never be null.
2015-10-16 23:39:30 -04:00
If it must never be null and yet it is null,
we've made a programming error that should be caught and fixed.
Throwing an exception is the right thing to do.
On the other hand, null values in the property path may be OK from time to time,
especially when we know the data will arrive eventually.
While we wait for data, the view should render without complaint and
the null property path should display as blank just as the `title` property does.
2015-10-16 23:39:30 -04:00
Unfortunately, our app crashes when the `currentHero` is null.
We could code around that problem with [NgIf](#ng-if)
+makeExample('template-syntax/ts/src/app/app.component.html', 'elvis-4')(format=".")
:marked
Or we could try to chain parts of the property path with `&&`, knowing that the expression bails out
when it encounters the first null.
+makeExample('template-syntax/ts/src/app/app.component.html', 'elvis-5')(format=".")
:marked
These approaches have merit but they can be cumbersome, especially if the property path is long.
2015-10-16 23:39:30 -04:00
Imagine guarding against a null somewhere in a long property path such as `a.b.c.d`.
2015-10-16 23:39:30 -04:00
The Angular **“Elvis” operator ( ?. )** is a more fluent and convenient way to guard against nulls in property paths.
The expression bails out when it hits the first null value.
The display is blank but the app keeps rolling and there are no errors.
+makeExample('template-syntax/ts/src/app/app.component.html', 'elvis-6')(format=".")
:marked
It works perfectly with long property paths too:
2015-10-16 23:39:30 -04:00
```
a?.b?.c?.d
```
2015-10-16 23:39:30 -04:00
.l-main-section
:marked
2015-10-16 23:39:30 -04:00
## What Next?
Weve completed our survey of Template Syntax. Time to put that knowledge to work as we write our own Components and Directives.