仍然不清楚如何显示或迭代对象对象。这是我的目标:
Row{
id: 1,
widget:{
name: 'bla bla',
location:{
top: 255, right: 0, bottom :0, left: 0;
}
}
location:{
top: 255, right: 0, bottom :0, left: 0;
}
}
这是HTML
<div *ngFor="let row of canvas; let r = index" >
<div class="row" style="padding-top: row.location.top;">
ROW {{row}} {{ row.location | json}}
</div>
</div>
我想将内容中的row.location.top
放入样式内联对象中。对于row.location | JSON
输出,我得到:
但如果我做{{ row.location.top | json}}
我就会变空。