parent
555ec46be3
commit
4c286e4f71
|
@ -170,16 +170,16 @@ include _util-fns
|
||||||
operations and supporting declaration syntax.
|
operations and supporting declaration syntax.
|
||||||
|
|
||||||
The many forms of binding include:
|
The many forms of binding include:
|
||||||
* [Interpolation](template-syntax.html#interpolation)
|
* [Interpolation](guide/template-syntax.html#interpolation)
|
||||||
* [Property Binding](template-syntax.html#property-binding)
|
* [Property Binding](guide/template-syntax.html#property-binding)
|
||||||
* [Event Binding](template-syntax.html#event-binding)
|
* [Event Binding](guide/template-syntax.html#event-binding)
|
||||||
* [Attribute Binding](template-syntax.html#attribute-binding)
|
* [Attribute Binding](guide/template-syntax.html#attribute-binding)
|
||||||
* [Class Binding](template-syntax.html#class-binding)
|
* [Class Binding](guide/template-syntax.html#class-binding)
|
||||||
* [Style Binding](template-syntax.html#style-binding)
|
* [Style Binding](guide/template-syntax.html#style-binding)
|
||||||
* [Two-way data binding with ngModel](template-syntax.html#ng-model)
|
* [Two-way data binding with ngModel](guide/template-syntax.html#ng-model)
|
||||||
|
|
||||||
Learn more about data binding in the
|
Learn more about data binding in the
|
||||||
[Template Syntax](template-syntax.html#data-binding) chapter.
|
[Template Syntax](guide/template-syntax.html#data-binding) chapter.
|
||||||
|
|
||||||
// #enddocregion d1
|
// #enddocregion d1
|
||||||
<a id="decorator"></a> <a id="decoration"></a>
|
<a id="decorator"></a> <a id="decoration"></a>
|
||||||
|
@ -270,7 +270,7 @@ include _util-fns
|
||||||
is when we [bootstrap](#bootstrap) the application.
|
is when we [bootstrap](#bootstrap) the application.
|
||||||
There are other opportunities to register as well.
|
There are other opportunities to register as well.
|
||||||
|
|
||||||
Learn more in the [Dependency Injection](dependency-injection.html) chapter.
|
Learn more in the [Dependency Injection](guide/dependency-injection.html) chapter.
|
||||||
:marked
|
:marked
|
||||||
## Directive
|
## Directive
|
||||||
.l-sub-section
|
.l-sub-section
|
||||||
|
@ -371,11 +371,11 @@ include _util-fns
|
||||||
.l-sub-section
|
.l-sub-section
|
||||||
:marked
|
:marked
|
||||||
A directive property that can be the ***target*** of a
|
A directive property that can be the ***target*** of a
|
||||||
[Property Binding](template-syntax.html#property-binding).
|
[Property Binding](guide/template-syntax.html#property-binding).
|
||||||
Data values flow *into* this property from the data source identified
|
Data values flow *into* this property from the data source identified
|
||||||
in the template expression to the right of the equal sign.
|
in the template expression to the right of the equal sign.
|
||||||
|
|
||||||
See the [Template Syntax](template-syntax.html#inputs-outputs) chapter.
|
See the [Template Syntax](guide/template-syntax.html#inputs-outputs) chapter.
|
||||||
|
|
||||||
:marked
|
:marked
|
||||||
## Interpolation
|
## Interpolation
|
||||||
|
@ -392,7 +392,7 @@ include _util-fns
|
||||||
|
|
||||||
:marked
|
:marked
|
||||||
Learn more about interpolation in the
|
Learn more about interpolation in the
|
||||||
[Template Syntax](template-syntax.html#interpolation) chapter.
|
[Template Syntax](guide/template-syntax.html#interpolation) chapter.
|
||||||
|
|
||||||
|
|
||||||
<a id="J"></a>
|
<a id="J"></a>
|
||||||
|
@ -434,7 +434,7 @@ include _util-fns
|
||||||
* `ngAfterViewChecked` - after every check of a component's view(s)
|
* `ngAfterViewChecked` - after every check of a component's view(s)
|
||||||
* `ngOnDestroy` - just before the directive is destroyed.
|
* `ngOnDestroy` - just before the directive is destroyed.
|
||||||
|
|
||||||
Learn more in the [Lifecycle Hooks](lifecycle-hooks.html) chapter.
|
Learn more in the [Lifecycle Hooks](guide/lifecycle-hooks.html) chapter.
|
||||||
// #enddocregion f-l
|
// #enddocregion f-l
|
||||||
|
|
||||||
// #docregion m1
|
// #docregion m1
|
||||||
|
@ -490,11 +490,11 @@ include _util-fns
|
||||||
.l-sub-section
|
.l-sub-section
|
||||||
:marked
|
:marked
|
||||||
A directive property that can be the ***target*** of an
|
A directive property that can be the ***target*** of an
|
||||||
[Event Binding](template-syntax.html#property-binding).
|
[Event Binding](guide/template-syntax.html#property-binding).
|
||||||
Events stream *out* of this property to the receiver identified
|
Events stream *out* of this property to the receiver identified
|
||||||
in the template expression to the right of the equal sign.
|
in the template expression to the right of the equal sign.
|
||||||
|
|
||||||
See the [Template Syntax](template-syntax.html#inputs-outputs) chapter.
|
See the [Template Syntax](guide/template-syntax.html#inputs-outputs) chapter.
|
||||||
|
|
||||||
.l-main-section
|
.l-main-section
|
||||||
<a id="P"></a>
|
<a id="P"></a>
|
||||||
|
@ -523,7 +523,7 @@ include _util-fns
|
||||||
code-example(language="html" escape="html").
|
code-example(language="html" escape="html").
|
||||||
<label>Price: </label>{{product.price | currency}}
|
<label>Price: </label>{{product.price | currency}}
|
||||||
:marked
|
:marked
|
||||||
Learn more in the chapter on [pipes](pipes.html) .
|
Learn more in the chapter on [pipes](guide/pipes.html) .
|
||||||
|
|
||||||
:marked
|
:marked
|
||||||
## Provider
|
## Provider
|
||||||
|
@ -550,7 +550,7 @@ include _util-fns
|
||||||
and taking other similar actions that cause the application to
|
and taking other similar actions that cause the application to
|
||||||
replace one view with another.
|
replace one view with another.
|
||||||
|
|
||||||
The Angular [Component Router](router.html) is a richly featured mechanism for configuring
|
The Angular [Component Router](guide/router.html) is a richly featured mechanism for configuring
|
||||||
and managing the entire view navigation process including the creation and destruction
|
and managing the entire view navigation process including the creation and destruction
|
||||||
of views.
|
of views.
|
||||||
:marked
|
:marked
|
||||||
|
@ -591,7 +591,7 @@ include _util-fns
|
||||||
the support and continuing guidance of an Angular [Directive](#directive),
|
the support and continuing guidance of an Angular [Directive](#directive),
|
||||||
most notably a [Component](#component).
|
most notably a [Component](#component).
|
||||||
|
|
||||||
We write templates in a special [Template Syntax](template-syntax.html).
|
We write templates in a special [Template Syntax](guide/template-syntax.html).
|
||||||
|
|
||||||
:marked
|
:marked
|
||||||
## Template Expression
|
## Template Expression
|
||||||
|
@ -599,7 +599,7 @@ include _util-fns
|
||||||
:marked
|
:marked
|
||||||
An expression in a JavaScript-like syntax that Angular evaluates within
|
An expression in a JavaScript-like syntax that Angular evaluates within
|
||||||
a [data binding](#data-binding). Learn how to write template expressions
|
a [data binding](#data-binding). Learn how to write template expressions
|
||||||
in the [Template Syntax](template-syntax.html#template-expressions) chapter.
|
in the [Template Syntax](guide/template-syntax.html#template-expressions) chapter.
|
||||||
|
|
||||||
// #enddocregion t1
|
// #enddocregion t1
|
||||||
// #docregion t2
|
// #docregion t2
|
||||||
|
|
Loading…
Reference in New Issue