{
"ABC 111": [
{
"id": 01,
"valueOne": 50,
"valueTwo": "string",
"valuethree": "string"
},
{
"id": 02,
"valueOne": 50,
"valueTwo": "string",
"valuethree": "string"
}
],
"XYZ 222": [
{
"id": 01,
"valueOne": 50,
"valueTwo": "string",
"valuethree": "string"
},
{
"id": 02,
"valueOne": 50,
"valueTwo": "string",
"valuethree": "string"
}
]
}
错误是: 找不到类型为“对象”的其他支持对象“ [对象对象]”。 NgFor仅支持绑定到数组等Iterable。
答案 0 :(得分:4)
您无需更改 .ts 文件中的任何内容。仅在 html 内部进行更改。
假设您具有 responseObj 。
<div *ngFor="let obj of responseObj | keyvalue">
<div *ngFor="let item of obj.value">
{{item.id}}
</div>
</div>
答案 1 :(得分:1)