我有这个 Angular 的 html:
<table>
<thead>
<tr>
<th *ngFor="let col of columns">
{{col}}
</th>
</tr>
<tr>
<th *ngFor="let col of subColumns">
{{col}}
</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let priceRow of priceRows">
<td *ngFor="let price of priceRow">
{{price}}
</td>
</tr>
</tbody>
</table>
这是我正在尝试执行行的 priceRows 的内容:
但是在尝试打印表格时我得到了空表。
您在 priceRows 的数组中看到任何错误吗?
Stackblitz 网址:https ://angular-bnxfca.stackblitz.io