找不到其他支持对象“ [object Object]”。 NgFor仅支持绑定到数组等Iterables

时间:2020-05-13 15:29:30

标签: json angular typescript

1 个答案:

答案 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>