Changement pour appeler l'API C# par Angular
+ récupération des datas et leur affichage
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user