我已经开始使用angular了,当我从json文件显示数据时我遇到了问题。问题是,我有重复的显示数据,这是我的HTML代码:
<md-tab *ngFor="let day of days" label={{day}}>
<div STYLE=" height: auto; width: auto; font-size: 12px; overflow: auto;" >
<table>
<tr >
<th><span>salle</span></th>
</tr>
<tr>
<td *ngFor="let slot of slotss">
<md-card style="height: 70px; width:90px;">
<md-card-content>{{slot.roomName}}</md-card-content>
</md-card>
</td>
</tr>
<tr *ngFor="let slot of slotss">
<th><md-card>{{slot.fromTime}}-{{slot.toTime}}</md-card></th>
<td><app-rows></app-rows></td>
</tr>
</table>
</div>