在 ts 文件中,我有这样的数据:
app.component.ts
this.images = [{
asset_id: 'asset_id',
asset_name: 'asset_name'
}];
和html模板如下:
app.component.html
test {{images}}
<div *ngFor="let img of images; index as i">
dddd--<span>{{img.asset_id}}</span>
</div>
结果如下:
我在这里做错了什么?