2016-07-07 17:00:19 -04:00
block includes
include ../_util-fns
- var _iterableUrl = 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols';
- var _boolean = 'truthy/falsey';
2016-09-23 19:53:50 -04:00
2015-11-10 13:31:46 -05:00
:marked
2016-09-23 19:53:50 -04:00
You can display data by binding controls in an HTML template to properties of an Angular component.
2015-10-23 22:05:17 -04:00
2016-09-23 19:53:50 -04:00
In this page, you'll create a component with a list of heroes.
You'll display the list of hero names and
2016-07-07 17:00:19 -04:00
conditionally show a message below the list.
2015-12-13 15:36:37 -05:00
2016-01-06 13:06:01 -05:00
The final UI looks like this:
2015-10-23 22:05:17 -04:00
figure.image-display
img(src="/resources/images/devguide/displaying-data/final.png" alt="Final UI")
2016-07-07 17:00:19 -04:00
2016-01-06 13:06:01 -05:00
:marked
2016-09-23 19:53:50 -04:00
# Contents
2016-07-07 17:00:19 -04:00
2016-09-23 19:53:50 -04:00
* [Showing component properties with interpolation](#interpolation).
* [Showing !{_an} !{_array} property with NgFor](#ngFor).
* [Conditional display with NgIf](#ngIf).
2016-07-07 17:00:19 -04:00
2016-03-16 08:51:48 -04:00
.l-sub-section
:marked
2016-07-07 17:00:19 -04:00
The <live-example></live-example> demonstrates all of the syntax and code
2016-09-23 19:53:50 -04:00
snippets described in this page.
2016-01-06 13:06:01 -05:00
2016-07-07 17:00:19 -04:00
.l-main-section#interpolation
2015-11-10 13:31:46 -05:00
:marked
2015-10-23 22:05:17 -04:00
## Showing component properties with interpolation
The easiest way to display a component property
is to bind the property name through interpolation.
2016-09-23 19:53:50 -04:00
With interpolation, you put the property name in the view template, enclosed in double curly braces: `{{myHero}}`.
2015-10-23 22:05:17 -04:00
2016-09-23 19:53:50 -04:00
To build an illustrative example, start by creating a new project folder called <ngio-ex path="displaying-data"></ngio-ex>
and following the steps in [QuickStart](../quickstart.html).
2016-07-07 17:00:19 -04:00
block quickstart-repo
include ../_quickstart_repo
2015-10-23 22:05:17 -04:00
2016-03-13 15:50:50 -04:00
:marked
2016-09-23 19:53:50 -04:00
Then modify the <ngio-ex path="app.component.ts"></ngio-ex> file by
2016-07-07 17:00:19 -04:00
changing the template and the body of the component.
2016-09-23 19:53:50 -04:00
When you're done, it should look like this:
2015-10-23 22:05:17 -04:00
2016-07-07 17:00:19 -04:00
+makeExample('app/app.component.1.ts')
2015-10-23 22:05:17 -04:00
2015-11-10 13:31:46 -05:00
:marked
2016-09-23 19:53:50 -04:00
You added two properties to the formerly empty component: `title` and `myHero`.
2015-10-23 22:05:17 -04:00
2016-09-23 19:53:50 -04:00
The revised template displays the two component properties using double curly brace
2015-10-23 22:05:17 -04:00
interpolation:
2016-07-07 17:00:19 -04:00
+makeExcerpt('app/app.component.1.ts', 'template', '')
+ifDocsFor('ts')
.l-sub-section
:marked
The template is a multi-line string within ECMAScript 2015 backticks (<code>\`</code>).
2016-09-23 19:53:50 -04:00
The backtick (<code>\`</code>)—which is *not* the same character as a single
quote (`'`)—allows you to compose a string over several lines, which makes the
HTML more readable.
2015-10-19 12:38:35 -04:00
2015-11-10 13:31:46 -05:00
:marked
2015-10-23 22:05:17 -04:00
Angular automatically pulls the value of the `title` and `myHero` properties from the component and
2016-01-06 13:06:01 -05:00
inserts those values into the browser. Angular updates the display
2015-10-23 22:05:17 -04:00
when these properties change.
2016-07-07 17:00:19 -04:00
2015-10-23 22:05:17 -04:00
.l-sub-section
2015-11-10 13:31:46 -05:00
:marked
2016-01-06 13:06:01 -05:00
More precisely, the redisplay occurs after some kind of asynchronous event related to
2016-09-23 19:53:50 -04:00
the view, such as a keystroke, a timer completion, or a response to an HTTP request.
2016-07-07 17:00:19 -04:00
2015-11-10 13:31:46 -05:00
:marked
2016-09-23 19:53:50 -04:00
Notice that you don't call **new** to create an instance of the `AppComponent` class.
Angular is creating an instance for you. How?
2015-10-23 22:05:17 -04:00
2016-09-23 19:53:50 -04:00
The CSS `selector` in the `@Component` !{_decorator} specifies an element named `my-app`.
Remember back in [QuickStart](../quickstart.html) that you added the `<my-app>`
element to the body of your `index.html` file:
2016-07-07 17:00:19 -04:00
+makeExcerpt('index.html', 'body')
2015-10-23 22:05:17 -04:00
2015-11-10 13:31:46 -05:00
:marked
2016-09-23 19:53:50 -04:00
When you bootstrap with the `AppComponent` class (in <ngio-ex path="main.ts"></ngio-ex>), Angular looks for a `<my-app>`
2015-10-23 22:05:17 -04:00
in the `index.html`, finds it, instantiates an instance of `AppComponent`, and renders it
inside the `<my-app>` tag.
2015-12-13 15:36:37 -05:00
2016-09-23 19:53:50 -04:00
Now run the app. It should display the title and hero name:
2015-12-11 00:41:02 -05:00
figure.image-display
img(src="/resources/images/devguide/displaying-data/title-and-hero.png" alt="Title and Hero")
2015-12-13 15:36:37 -05:00
2016-07-07 17:00:19 -04:00
+ifDocsFor('ts')
:marked
2016-09-23 19:53:50 -04:00
The next few sections review some of the coding choices in the app.
2016-07-07 17:00:19 -04:00
:marked
2015-10-23 22:05:17 -04:00
## Template inline or template file?
2016-09-23 19:53:50 -04:00
You can store your component's template in one of two places.
You can define it *inline* using the `template` property, or you can define
the template in a separate HTML file and link to it in
2016-07-07 17:00:19 -04:00
the component metadata using the `@Component` !{_decorator}'s `templateUrl` property.
2015-10-23 22:05:17 -04:00
2016-01-06 13:06:01 -05:00
The choice between inline and separate HTML is a matter of taste,
circumstances, and organization policy.
2016-09-23 19:53:50 -04:00
Here the app uses inline HTML because the template is small and the demo
2016-07-07 17:00:19 -04:00
is simpler without the additional HTML file.
2015-10-23 22:05:17 -04:00
2015-12-15 18:29:12 -05:00
In either style, the template data bindings have the same access to the component's properties.
2015-10-23 22:05:17 -04:00
2016-07-07 17:00:19 -04:00
+ifDocsFor('ts')
:marked
## Constructor or variable initialization?
2015-10-23 22:05:17 -04:00
2016-09-23 19:53:50 -04:00
Although this example uses variable assignment to initialize the components, you can instead declare and initialize the properties using a constructor:
2015-10-23 22:05:17 -04:00
2016-07-07 17:00:19 -04:00
+makeExcerpt('app/app-ctor.component.ts', 'class')
2015-10-23 22:05:17 -04:00
2016-07-07 17:00:19 -04:00
:marked
2016-09-23 19:53:50 -04:00
This app uses more terse "variable assignment" style simply for brevity.
2015-10-23 22:05:17 -04:00
2016-07-07 17:00:19 -04:00
.l-main-section#ngFor
2015-11-10 13:31:46 -05:00
:marked
2016-07-07 17:00:19 -04:00
## Showing !{_an} !{_array} property with ***ngFor**
2016-09-23 19:53:50 -04:00
To display a list of heroes, begin by adding !{_an} !{_array} of hero names to the component and redefine `myHero` to be the first name in the !{_array}.
2015-10-23 22:05:17 -04:00
2016-07-07 17:00:19 -04:00
+makeExcerpt('app/app.component.2.ts', 'class')
2015-10-23 22:05:17 -04:00
2015-11-10 13:31:46 -05:00
:marked
2016-09-23 19:53:50 -04:00
Now use the Angular `ngFor` directive in the template to display
2015-10-23 22:05:17 -04:00
each item in the `heroes` list.
2016-07-07 17:00:19 -04:00
+makeExcerpt('app/app.component.2.ts', 'template')
2015-10-23 22:05:17 -04:00
2015-11-10 13:31:46 -05:00
:marked
2016-09-23 19:53:50 -04:00
This UI uses the HTML unordered list with `<ul>` and `<li>` tags. The `*ngFor`
in the `<li>` element is the Angular "repeater" directive.
It marks that `<li>` element (and its children) as the "repeater template":
2016-07-07 17:00:19 -04:00
+makeExcerpt('app/app.component.2.ts ()', 'li', '')
2015-10-23 22:05:17 -04:00
.alert.is-important
2015-11-10 13:31:46 -05:00
:marked
2016-01-06 13:06:01 -05:00
Don't forget the leading asterisk (\*) in `*ngFor`. It is an essential part of the syntax.
2016-09-23 19:53:50 -04:00
For more information, see the [Template Syntax](./template-syntax.html#ngFor) page.
2015-10-23 22:05:17 -04:00
2015-11-10 13:31:46 -05:00
:marked
2016-07-07 17:00:19 -04:00
Notice the `hero` in the `ngFor` double-quoted instruction;
2016-09-23 19:53:50 -04:00
it is an example of a template input variable. Read
more about template input variables in the [microsyntax](./template-syntax.html#ngForMicrosyntax) section of
the [Template Syntax](./template-syntax.html) page.
2015-10-19 12:38:35 -04:00
2016-01-06 13:06:01 -05:00
Angular duplicates the `<li>` for each item in the list, setting the `hero` variable
2015-10-23 22:05:17 -04:00
to the item (the hero) in the current iteration. Angular uses that variable as the
context for the interpolation in the double curly braces.
.l-sub-section
2015-11-10 13:31:46 -05:00
:marked
2016-09-23 19:53:50 -04:00
In this case, `ngFor` is displaying !{_an} !{_array}, but `ngFor` can
repeat items for any [iterable](!{_iterableUrl}) object.
2015-11-10 13:31:46 -05:00
:marked
2016-07-07 17:00:19 -04:00
Now the heroes appear in an unordered list.
2015-10-23 22:05:17 -04:00
figure.image-display
img(src="/resources/images/devguide/displaying-data/hero-names-list.png" alt="After ngfor")
.l-main-section
2015-11-10 13:31:46 -05:00
:marked
2015-10-23 22:05:17 -04:00
## Creating a class for the data
2016-09-23 19:53:50 -04:00
The app's code defines the data directly inside the component, which isn't best practice.
In a simple demo, however, it's fine.
2015-10-23 22:05:17 -04:00
2016-09-23 19:53:50 -04:00
At the moment, the binding is to !{_an} !{_array} of strings.
In real applications, most bindings are to more specialized objects.
2015-10-23 22:05:17 -04:00
2016-09-23 19:53:50 -04:00
To convert this binding to use specialized objects, turn the !{_array}
of hero names into !{_an} !{_array} of `Hero` objects. For that you'll need a `Hero` class.
2015-10-23 22:05:17 -04:00
2016-07-07 17:00:19 -04:00
Create a new file in the `!{_appDir}` folder called <ngio-ex path="hero.ts"></ngio-ex> with the following code:
2016-09-23 19:53:50 -04:00
2016-07-07 17:00:19 -04:00
+makeExcerpt('app/hero.ts')
2015-10-23 22:05:17 -04:00
2016-07-07 17:00:19 -04:00
block hero-class
:marked
2016-09-23 19:53:50 -04:00
You've defined a class with a constructor and two properties: `id` and `name`.
2015-10-23 22:05:17 -04:00
2016-09-23 19:53:50 -04:00
It might not look like the class has properties, but it does.
The declaration of the constructor parameters takes advantage of a TypeScript shortcut.
2015-10-23 22:05:17 -04:00
2016-07-07 17:00:19 -04:00
Consider the first parameter:
2015-10-23 22:05:17 -04:00
2016-07-07 17:00:19 -04:00
+makeExcerpt('app/hero.ts ()', 'id')
:marked
That brief syntax does a lot:
2016-09-23 19:53:50 -04:00
* Declares a constructor parameter and its type.
* Declares a public property of the same name.
* Initializes that property with the corresponding argument when creating an instance of the class.
2015-10-23 22:05:17 -04:00
.l-main-section
2015-11-10 13:31:46 -05:00
:marked
2016-01-06 13:06:01 -05:00
## Using the Hero class
2016-09-23 19:53:50 -04:00
The `heroes` property in the component can now use the `Hero` class to return !{_an} !{_array}
of `Hero` objects:
2016-07-07 17:00:19 -04:00
+makeExcerpt('app/app.component.3.ts', 'heroes')
2015-10-23 22:05:17 -04:00
2015-11-10 13:31:46 -05:00
:marked
2016-09-23 19:53:50 -04:00
Next, update the template.
2016-07-07 17:00:19 -04:00
At the moment it displays the hero's `id` and `name`.
2016-09-23 19:53:50 -04:00
Fix that to display only the hero's `name` property.
2016-07-07 17:00:19 -04:00
+makeExcerpt('app/app.component.3.ts', 'template')
2015-10-23 22:05:17 -04:00
2015-11-10 13:31:46 -05:00
:marked
2016-09-23 19:53:50 -04:00
The display looks the same, but the code is clearer.
2015-10-23 22:05:17 -04:00
2016-07-07 17:00:19 -04:00
.l-main-section#ngIf
2015-11-10 13:31:46 -05:00
:marked
2015-10-23 22:05:17 -04:00
## Conditional display with NgIf
2016-07-07 17:00:19 -04:00
Sometimes an app needs to display a view or a portion of a view only under specific circumstances.
2015-10-23 22:05:17 -04:00
2016-09-23 19:53:50 -04:00
Let's change the example to display a message if there are more than three heroes.
2015-10-23 22:05:17 -04:00
2016-07-07 17:00:19 -04:00
The Angular `ngIf` directive inserts or removes an element based on a !{_boolean} condition.
2016-09-23 19:53:50 -04:00
To see it in action, add the following paragraph at the bottom of the template:
2016-07-07 17:00:19 -04:00
+makeExcerpt('app/app.component.ts', 'message')
2015-10-23 22:05:17 -04:00
.alert.is-important
2015-11-10 13:31:46 -05:00
:marked
2016-01-06 13:06:01 -05:00
Don't forget the leading asterisk (\*) in `*ngIf`. It is an essential part of the syntax.
2016-09-23 19:53:50 -04:00
Read more about `ngIf` and `*` in the [ngIf section](./template-syntax.html#ngIf) of the [Template Syntax](./template-syntax.html) page.
2015-10-23 22:05:17 -04:00
2015-11-10 13:31:46 -05:00
:marked
2016-09-23 19:53:50 -04:00
The template expression inside the double quotes,
`*ngIf="heros.length > 3"`, looks and behaves much like !{_Lang}.
When the component's list of heroes has more than three items, Angular adds the paragraph
to the DOM and the message appears. If there are three or fewer items, Angular omits the
paragraph, so no message appears. For more information,
see the [template expressions](./template-syntax.html#template-expressions) section of the
[Template Syntax](./template-syntax.html) page.
2015-10-23 22:05:17 -04:00
.alert.is-helpful
2015-11-10 13:31:46 -05:00
:marked
2016-09-23 19:53:50 -04:00
Angular isn't showing and hiding the message. It is adding and removing the paragraph element from the DOM. That improves performance, especially in larger projects when conditionally including or excluding
big chunks of HTML with many data bindings.
2015-10-23 22:05:17 -04:00
2015-11-10 13:31:46 -05:00
:marked
2016-07-07 17:00:19 -04:00
Try it out. Because the !{_array} has four items, the message should appear.
Go back into <ngio-ex path="app.component.ts"></ngio-ex> and delete or comment out one of the elements from the hero !{_array}.
2015-12-11 00:41:02 -05:00
The browser should refresh automatically and the message should disappear.
2015-12-13 15:36:37 -05:00
2015-10-23 22:05:17 -04:00
.l-main-section
2015-11-10 13:31:46 -05:00
:marked
2015-10-23 22:05:17 -04:00
## Summary
2016-09-23 19:53:50 -04:00
Now you know how to use:
- **Interpolation** with double curly braces to display a component property.
- **ngFor** to display !{_an} !{_array} of items.
- A !{_Lang} class to shape the **model data** for your component and display properties of that model.
- **ngIf** to conditionally display a chunk of HTML based on a boolean expression.
2015-10-23 22:05:17 -04:00
2016-09-23 19:53:50 -04:00
Here's the final code:
2015-10-23 22:05:17 -04:00
2016-07-07 17:00:19 -04:00
block final-code
+makeTabs(`displaying-data/ts/app/app.component.ts,
displaying-data/ts/app/hero.ts,
2016-08-09 12:38:25 -04:00
displaying-data/ts/app/app.module.ts,
2016-07-07 17:00:19 -04:00
displaying-data/ts/app/main.ts`,
2016-08-09 12:38:25 -04:00
'final,,,',
2016-09-23 19:53:50 -04:00
'app/app.component.ts, app/hero.ts, app.module.ts, main.ts')