答案 0 :(得分:0)
响应不是直接数组。它是一个具有包含数组的属性的对象。从您发布的图片中,您可以尝试以下
<table class="table table-striped">
<tr *ngFor="let customer of response._embedded.customers"> <!-- access properties here -->
<td>
<b>ID</b><br>
{{ customer.user_id }}
</td>
<td>
<b>Name:</b> {{ customer.first_name }}
</td>
</tr>
</table>