如何列出表中记录的不完整列表?

时间:2018-07-04 05:46:08

标签: angular

假设有这样一张桌子:

<table>
  <thead>
    <tr>
      <th style="text-align: center;" ><b>Name</b></th>
      <th style="text-align: center;"><b>Value type</b></th>
      <th style="text-align: center;" ><b>Visibility </b></th>
    </tr>
  </thead>
  <tbody *ngIf="typeEvent">
    <tr *ngFor="let attribute of attributes">
      <td style="text-align: center;"> {{attribute.name}} </td>
      <td style="text-align: center;">{{attribute.eventattribut_type}} </td>
      <td style="text-align: center;"> <input type="checkbox" class="material_checkbox" [(ngModel)]='attribute.visible' name="visible"> </td>
    </tr>
  </tbody>
</table>

如何在表中显示与特定组件typeEvent紧密相关的那些值。此刻,尽管我选择了组件attribute中的值,但所有记录typeEvent都已输出到表中。

0 个答案:

没有答案