The data I got:
var items=[
{ "version": "1", "theme": "Windstorm" ,"age":20},
{ "version": "2", "theme": "Bombasto","age":21},
{ "version": "3", "theme": "Magneta" ,"age":22},
{ "version": "4", "theme": "Tornado" ,"age":23}
];
My template:
<p>
<p> <tr *ngFor="let item of items"> <td *ngFor="怎么写">怎么写</td> </tr> </p> </p>
I want to traverse the keys in the item, get the corresponding value, and render it into the
<td>
element in a loop. How should I write my template?
...
ng2
这点让我非常不爽,居然不能天然遍历Object
, we can only write it ourselves, in order not to confuse you, I use the simplest way to play,First is the
template
part:The following is the
Component
logical part:The method definitely works, just try it and see for yourself
keys.pipe.ts
app.component.ts