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

@@ -3,9 +3,8 @@
</p>
<table>
<tr *ngFor="let dropZone of userObservable | async as listOfDropZones; index as i;">
<td>{{ dropZone.Id }}</td>
<td>{{ dropZone.Name }}</td>
<tr *ngFor="let dropZone of this.listOfDropZones; index as i;">
<td>{{ dropZone.id }}</td>
<td>{{ dropZone.name }}</td>
</tr>
</table>