行为示例:
https://stackblitz.com/edit/angular-ctyf9w
为什么我无法使用* ngFor显示数据?在某些文档中是否有任何示例如何与其他列一致地显示数据和行跨度?
答案 0 :(得分:3)
您没有正确使用ngFor。在您的情况下,您不需要索引。从以下位置更改代码:
<div *ngFor="let price of product.prices; let i = index;">
{{ price[i].price }}
</div>
收件人:
<div *ngFor="let price of product.prices">
{{ price.price }}
</div>