6: Get Data from a Server
[examples/angular-tour-of-heroes] / src / app / hero-detail / hero-detail.component.ts
index 76e7912..caeb796 100644 (file)
@@ -37,6 +37,11 @@ export class HeroDetailComponent implements OnInit {
     });
   }
 
+  save(): void {
+    this.heroService.updateHero(this.hero)
+      .subscribe(() => this.goBack());
+  }
+
   goBack(): void {
     this.location.back();
   }