Display a Heroes List

显示英雄列表

In this page, you'll expand the Tour of Heroes app to display a list of heroes, and allow users to select a hero and display the hero's details.

本页中,你将扩展《英雄指南》应用,让它显示一个英雄列表, 并允许用户选择一个英雄,查看该英雄的详细信息。

Create mock heroes

创建模拟(mock)的英雄数据

You'll need some heroes to display.

你需要一些英雄数据以供显示。

Eventually you'll get them from a remote data server. For now, you'll create some mock heroes and pretend they came from the server.

最终,你会从远端的数据服务器获取它。 不过目前,你要先创建一些模拟的英雄数据,并假装它们是从服务器上取到的。

Create a file called mock-heroes.ts in the src/app/ folder. Define a HEROES constant as an array of ten heroes and export it. The file should look like this.

src/app/ 文件夹中创建一个名叫 mock-heroes.ts 的文件。 定义一个包含十个英雄的常量数组 HEROES,并导出它。 该文件是这样的。

import { Hero } from './hero'; export const HEROES: Hero[] = [ { id: 11, name: 'Mr. Nice' }, { id: 12, name: 'Narco' }, { id: 13, name: 'Bombasto' }, { id: 14, name: 'Celeritas' }, { id: 15, name: 'Magneta' }, { id: 16, name: 'RubberMan' }, { id: 17, name: 'Dynama' }, { id: 18, name: 'Dr IQ' }, { id: 19, name: 'Magma' }, { id: 20, name: 'Tornado' } ];

Displaying heroes

显示这些英雄

You're about to display the list of heroes at the top of the HeroesComponent.

你要在 HeroesComponent 的顶部显示这个英雄列表。

Open the HeroesComponent class file and import the mock HEROES.

打开 HeroesComponent 类文件,并导入模拟的 HEROES

import { HEROES } from '../mock-heroes';

Add a heroes property to the class that exposes these heroes for binding.

往类中添加一个 heroes 属性,这样可以暴露出这些英雄,以供绑定。

heroes = HEROES;

List heroes with *ngFor

使用 *ngFor 列出这些英雄

Open the HeroesComponent template file and make the following changes:

打开 HeroesComponent 的模板文件,并做如下修改:

  • Add an <h2> at the top,

    在顶部添加 <h2>

  • Below it add an HTML unordered list (<ul>)

    然后添加表示无序列表的 HTML 元素(<ul>

  • Insert an <li> within the <ul> that displays properties of a hero.

    <ul> 中插入一个 <li> 元素,以显示单个 hero 的属性。

  • Sprinkle some CSS classes for styling (you'll add the CSS styles shortly).

    点缀上一些 CSS 类(稍后你还会添加更多 CSS 样式)。

Make it look like this:

做完之后应该是这样的:

<h2>My Heroes</h2> <ul class="heroes"> <li> <span class="badge">{{hero.id}}</span> {{hero.name}} </li> </ul>

Now change the <li> to this:

现在,把 <li> 修改成这样:

<li *ngFor="let hero of heroes">

The *ngForis Angular's repeater directive. It repeats the host element for each element in a list.

*ngFor是一个 Angular 的复写器(repeater)指令。 它会为列表中的每项数据复写它的宿主元素。

In this example

在这个例子中

  • <li> is the host element

    <li> 就是 *ngFor 的宿主元素

  • heroes is the list from the HeroesComponent class.

    heroes 就是来自 HeroesComponent 类的列表。

  • hero holds the current hero object for each iteration through the list.

    当依次遍历这个列表时,hero 会为每个迭代保存当前的英雄对象。

Don't forget the asterisk (*) in front of ngFor. It's a critical part of the syntax.

不要忘了 ngFor 前面的星号(*),它是该语法中的关键部分。

After the browser refreshes, the list of heroes appears.

浏览器刷新之后,英雄列表出现了。

Style the heroes

给英雄们“美容”

The heroes list should be attractive and should respond visually when users hover over and select a hero from the list.

英雄列表应该富有吸引力,并且当用户把鼠标移到某个英雄上和从列表中选中某个英雄时,应该给出视觉反馈。

In the first tutorial, you set the basic styles for the entire application in styles.css. That stylesheet didn't include styles for this list of heroes.

教程的第一章,你曾在 styles.css 中为整个应用设置了一些基础的样式。 但那个样式表并不包含英雄列表所需的样式。

You could add more styles to styles.css and keep growing that stylesheet as you add components.

固然,你可以把更多样式加入到 styles.css,并且放任它随着你添加更多组件而不断膨胀。

You may prefer instead to define private styles for a specific component and keep everything a component needs— the code, the HTML, and the CSS —together in one place.

但还有更好的方式。你可以定义属于特定组件的私有样式,并且让组件所需的一切(代码、HTML 和 CSS)都放在一起。

This approach makes it easier to re-use the component somewhere else and deliver the component's intended appearance even if the global styles are different.

这种方式让你在其它地方复用该组件更加容易,并且即使全局样式和这里不一样,组件也仍然具有期望的外观。

You define private styles either inline in the @Component.styles array or as stylesheet file(s) identified in the @Component.styleUrls array.

你可以用多种方式定义私有样式,或者内联在 @Component.styles 数组中,或者在 @Component.styleUrls 所指出的样式表文件中。

When the CLI generated the HeroesComponent, it created an empty heroes.component.css stylesheet for the HeroesComponent and pointed to it in @Component.styleUrls like this.

当 CLI 生成 HeroesComponent 时,它也同时为 HeroesComponent 创建了空白的 heroes.component.css 样式表文件,并且让 @Component.styleUrls 指向它,就像这样:

@Component({ selector: 'app-heroes', templateUrl: './heroes.component.html', styleUrls: ['./heroes.component.css'] })

Open the heroes.component.css file and paste in the private CSS styles for the HeroesComponent. You'll find them in the final code review at the bottom of this guide.

打开 heroes.component.css 文件,并且把 HeroesComponent 的私有 CSS 样式粘贴进去。 你可以在本指南底部的查看最终代码中找到它们。

Styles and stylesheets identified in @Component metadata are scoped to that specific component. The heroes.component.css styles apply only to the HeroesComponent and don't affect the outer HTML or the HTML in any other component.

@Component 元数据中指定的样式和样式表都是局限于该组件的。 heroes.component.css 中的样式只会作用于 HeroesComponent,既不会影响到组件外的 HTML,也不会影响到其它组件中的 HTML。

Master/Detail

主从结构

When the user clicks a hero in the master list, the component should display the selected hero's details at the bottom of the page.

当用户在列表中点击一个英雄时,该组件应该在页面底部显示所选英雄的详情

In this section, you'll listen for the hero item click event and update the hero detail.

在本节,你将监听英雄条目的点击事件,并更新英雄的详情。

Add a click event binding

添加 click 事件绑定

Add a click event binding to the <li> like this:

再往 <li> 元素上插入一句点击事件的绑定代码:

<li *ngFor="let hero of heroes" (click)="onSelect(hero)">

This is an example of Angular's event binding syntax.

这是 Angular 事件绑定 语法的例子。

The parentheses around click tell Angular to listen for the <li> element's click event. When the user clicks in the <li>, Angular executes the onSelect(hero) expression.

click 外面的圆括号会让 Angular 监听这个 <li> 元素的 click 事件。 当用户点击 <li> 时,Angular 就会执行表达式 onSelect(hero)

onSelect() is a HeroesComponent method that you're about to write. Angular calls it with the hero object displayed in the clicked <li>, the same hero defined previously in the *ngFor expression.

onSelect()HeroesComponent 上的一个方法,你很快就要写它。 Angular 会把所点击的 <li> 上的 hero 对象传给它,这个 hero 也就是前面在 *ngFor 表达式中定义的那个。

Add the click event handler

添加 click 事件处理器

Rename the component's hero property to selectedHero but don't assign it. There is no selected hero when the application starts.

把该组件的 hero 属性改名为 selectedHero,但不要为它赋值。 因为应用刚刚启动时并没有所选英雄

Add the following onSelect() method, which assigns the clicked hero from the template to the component's selectedHero.

添加如下 onSelect() 方法,它会把模板中被点击的英雄赋值给组件的 selectedHero 属性。

selectedHero: Hero; onSelect(hero: Hero): void { this.selectedHero = hero; }

Update the details template

修改详情模板

The template still refers to the component's old hero property which no longer exists. Rename hero to selectedHero.

该模板引用的仍然是老的 hero 属性,但它已经不存在了。 把 hero 改名为 selectedHero

<h2>{{selectedHero.name | uppercase}} Details</h2> <div><span>id: </span>{{selectedHero.id}}</div> <div> <label>name: <input [(ngModel)]="selectedHero.name" placeholder="name"> </label> </div>

Hide empty details with *ngIf

使用 *ngIf 隐藏空白的详情

After the browser refreshes, the application is broken.

刷新浏览器,应用挂了。

Open the browser developer tools and look in the console for an error message like this:

打开浏览器的开发者工具,它的控制台中显示出如下错误信息:

HeroesComponent.html:3 ERROR TypeError: Cannot read property 'name' of undefined

Now click one of the list items. The app seems to be working again. The heroes appear in a list and details about the clicked hero appear at the bottom of the page.

现在,从列表中随便点击一个条目。 应用又正常了。 英雄们显示在列表中,并且所点英雄的详情也显示在了页面的下方。

What happened?

怎么回事?

When the app starts, the selectedHero is undefined by design.

当应用启动时,selectedHeroundefined设计如此

Binding expressions in the template that refer to properties of selectedHero — expressions like {{selectedHero.name}}must fail because there is no selected hero.

但模板中的绑定表达式引用了 selectedHero 的属性(表达式为 {{selectedHero.name}}),这必然会失败,因为你还没选过英雄呢。

The fix

修复

The component should only display the selected hero details if the selectedHero exists.

该组件应该只有当 selectedHero 存在时才显示所选英雄的详情。

Wrap the hero detail HTML in a <div>. Add Angular's *ngIf directive to the <div> and set it to selectedHero.

把显示英雄详情的 HTML 包裹在一个 <div> 中。 并且为这个 div 添加 Angular 的 *ngIf 指令,把它的值设置为 selectedHero

Don't forget the asterisk (*) in front of ngIf. It's a critical part of the syntax.

不要忘了 ngIf 前面的星号(*),它是该语法中的关键部分。

<div *ngIf="selectedHero"> <h2>{{selectedHero.name | uppercase}} Details</h2> <div><span>id: </span>{{selectedHero.id}}</div> <div> <label>name: <input [(ngModel)]="selectedHero.name" placeholder="name"> </label> </div> </div>

After the browser refreshes, the list of names reappears. The details area is blank. Click a hero and its details appear.

浏览器刷新之后,英雄名字的列表又出现了。 详情部分仍然是空。 点击一个英雄,它的详情就出现了。

Why it works

为什么改好了?

When selectedHero is undefined, the ngIf removes the hero detail from the DOM. There are no selectedHero bindings to worry about.

selectedHeroundefined 时,ngIf 从 DOM 中移除了英雄详情。因此也就不用担心 selectedHero 的绑定了。

When the user picks a hero, selectedHero has a value and ngIf puts the hero detail into the DOM.

当用户选择一个英雄时,selectedHero 也就有了值,并且 ngIf 把英雄的详情放回到 DOM 中。

Style the selected hero

给所选英雄添加样式

It's difficult to identify the selected hero in the list when all <li> elements look alike.

所有的 <li> 元素看起来都是一样的,因此很难从列表中识别出所选英雄

If the user clicks "Magneta", that hero should render with a distinctive but subtle background color like this:

如果用户点击了“Magneta”,这个英雄应该用一个略有不同的背景色显示出来,就像这样:

Selected hero

That selected hero coloring is the work of the .selected CSS class in the styles you added earlier. You just have to apply the .selected class to the <li> when the user clicks it.

所选英雄的颜色来自于你前面添加的样式中的 CSS 类 .selected。 所以你只要在用户点击一个 <li> 时把 .selected 类应用到该元素上就可以了。

The Angular class binding makes it easy to add and remove a CSS class conditionally. Just add [class.some-css-class]="some-condition" to the element you want to style.

Angular 的 CSS 类绑定机制让根据条件添加或移除一个 CSS 类变得很容易。 只要把 [class.some-css-class]="some-condition" 添加到你要施加样式的元素上就可以了。

Add the following [class.selected] binding to the <li> in the HeroesComponent template:

HeroesComponent 模板中的 <li> 元素上添加 [class.selected] 绑定,代码如下:

[class.selected]="hero === selectedHero"

When the current row hero is the same as the selectedHero, Angular adds the selected CSS class. When the two heroes are different, Angular removes the class.

如果当前行的英雄和 selectedHero 相同,Angular 就会添加 CSS 类 selected,否则就会移除它。

The finished <li> looks like this:

最终的 <li> 是这样的:

<li *ngFor="let hero of heroes" [class.selected]="hero === selectedHero" (click)="onSelect(hero)"> <span class="badge">{{hero.id}}</span> {{hero.name}} </li>

Final code review

查看最终代码

Your app should look like this.

你的应用现在变成了这样:

Here are the code files discussed on this page, including the HeroesComponent styles.

下面是本页面中所提及的代码文件,包括 HeroesComponent 的样式。

import { Component, OnInit } from '@angular/core'; import { Hero } from '../hero'; import { HEROES } from '../mock-heroes'; @Component({ selector: 'app-heroes', templateUrl: './heroes.component.html', styleUrls: ['./heroes.component.css'] }) export class HeroesComponent implements OnInit { heroes = HEROES; selectedHero: Hero; constructor() { } ngOnInit() { } onSelect(hero: Hero): void { this.selectedHero = hero; } }<h2>My Heroes</h2> <ul class="heroes"> <li *ngFor="let hero of heroes" [class.selected]="hero === selectedHero" (click)="onSelect(hero)"> <span class="badge">{{hero.id}}</span> {{hero.name}} </li> </ul> <div *ngIf="selectedHero"> <h2>{{selectedHero.name | uppercase}} Details</h2> <div><span>id: </span>{{selectedHero.id}}</div> <div> <label>name: <input [(ngModel)]="selectedHero.name" placeholder="name"> </label> </div> </div>/* HeroesComponent's private CSS styles */ .selected { background-color: #CFD8DC !important; color: white; } .heroes { margin: 0 0 2em 0; list-style-type: none; padding: 0; width: 15em; } .heroes li { cursor: pointer; position: relative; left: 0; background-color: #EEE; margin: .5em; padding: .3em 0; height: 1.6em; border-radius: 4px; } .heroes li.selected:hover { background-color: #BBD8DC !important; color: white; } .heroes li:hover { color: #607D8B; background-color: #DDD; left: .1em; } .heroes .text { position: relative; top: -3px; } .heroes .badge { display: inline-block; font-size: small; color: white; padding: 0.8em 0.7em 0 0.7em; background-color: #607D8B; line-height: 1em; position: relative; left: -1px; top: -4px; height: 1.8em; margin-right: .8em; border-radius: 4px 0 0 4px; }

Summary

小结

  • The Tour of Heroes app displays a list of heroes in a Master/Detail view.

    英雄指南应用在一个主从视图中显示了英雄列表。

  • The user can select a hero and see that hero's details.

    用户可以选择一个英雄,并查看该英雄的详情。

  • You used *ngFor to display a list.

    你使用 *ngFor 显示了一个列表。

  • You used *ngIf to conditionally include or exclude a block of HTML.

    你使用 *ngIf 来根据条件包含或排除了一段 HTML。

  • You can toggle a CSS style class with a class binding.

    你可以用 class 绑定来切换 CSS 的样式类。