假设有这样一张桌子:
<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
都已输出到表中。