角材料表未显示dataSource对象内的数组数据

时间:2018-12-19 12:21:58

标签: angular angular-material

行为示例:

https://stackblitz.com/edit/angular-ctyf9w

为什么我无法使用* ngFor显示数据?在某些文档中是否有任何示例如何与其他列一致地显示数据和行跨度?

1 个答案:

答案 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>

这是您的working forked project