尝试从Angular中的数组中显示表中的数据

时间:2019-02-27 17:37:24

标签: html angular

我在Angular 6中有一些代码可以显示数据,但是我尝试实现的代码不起作用?到目前为止,我的代码:

TS文件

  incident = [ 
    {id: 'E200', product: 'MP2355 Black and white', floor: '2', address: '11 Rue', code: '75019'},
  ];

  incidents = this.incident[0];

HTML文件

<tr class="" *ngFor="let state of incidents">
    <td>{{state.id}}</td>
</tr>

2 个答案:

答案 0 :(得分:2)

incidents = this.incident[0];

您仅从数组中获取一个对象,因此它无法在视图中迭代循环。

this.incidents=this.incident;
<tr *ngFor= "let incident of incidents">
<td>{{ incident.id }} </td>
..
..
</tr>

答案 1 :(得分:0)

那不是事件而是事件吗?

android.support