6: Get Data from a Server
[examples/angular-tour-of-heroes] / src / app / heroes / heroes.component.html
index eb1a9a9..6866fe0 100644 (file)
@@ -1,6 +1,17 @@
-<h2>{{hero.name | uppercase}} Details</h2>
-<div><span>id: </span>{{hero.id}}</div>
+<h2>My Heroes</h2>
 <div>
-  <label>name: </label>
-  <input [(ngModel)]="hero.name" placeholder="Type a name..." />
+  <label>Hero name:
+    <input #heroName />
+  </label>
+  <!-- (click) passes input value to add() and then clears the input -->
+  <button (click)="add(heroName.value); heroName.value=''">
+    add
+  </button>
 </div>
+<ul class="heroes">
+  <li *ngFor="let hero of heroes">
+    <a routerLink="/detail/{{hero.id}}">
+      <span class="badge">{{hero.id}}</span> {{hero.name}}
+    </a>
+  </li>
+</ul>