Changement pour appeler l'API C# par Angular

+ récupération des datas et leur affichage
This commit is contained in:
Sébastien André
2019-10-07 15:03:09 +02:00
parent 9710b37353
commit b98adf88ca
8 changed files with 76 additions and 26 deletions

View File

@@ -10,7 +10,7 @@ import { ServiceApi } from '../../services/serviceApi';
export class ListOfDzsComponent implements OnInit {
public listOfDropZones: Array<DropZoneResp>;
public listOfDropZones: Array<DropZoneResp> = new Array<DropZoneResp>();
constructor(private serviceApi: ServiceApi) {
}
@@ -21,6 +21,6 @@ export class ListOfDzsComponent implements OnInit {
getListOfDropZones() {
this.serviceApi.getListOfDropZones()
.subscribe((data: Array<DropZoneResp>) => this.listOfDropZones = data);
.subscribe(data => this.listOfDropZones = data);
}
}