6: Get Data from a Server
authorKai Moritz <kai@juplo.de>
Sat, 16 May 2020 07:01:19 +0000 (09:01 +0200)
committerKai Moritz <kai@juplo.de>
Sat, 16 May 2020 07:11:28 +0000 (09:11 +0200)
a) Enable HTTP services

src/app/app.module.ts

index e4e6882..b76b39d 100644 (file)
@@ -2,6 +2,7 @@ import { BrowserModule } from '@angular/platform-browser';
 import { NgModule } from '@angular/core';
 import { AppRoutingModule } from './app-routing.module';
 import { FormsModule } from '@angular/forms';
+import { HttpClientModule } from '@angular/common/http';
 
 import { AppComponent } from './app.component';
 import { HeroesComponent } from './heroes/heroes.component';
@@ -20,7 +21,8 @@ import { DashboardComponent } from './dashboard/dashboard.component';
   imports: [
     BrowserModule,
     AppRoutingModule,
-    FormsModule
+    FormsModule,
+    HttpClientModule
   ],
   providers: [],
   bootstrap: [AppComponent]