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

@@ -1,3 +1,10 @@
<p>
list-of-jumps works!
</p>
<table>
<tr *ngFor="let jump of this.listOfJumps | async; index as i;">
<td>{{ jump.id }}</td>
</tr>
</table>