我正在使用下面的 Json 显示数据。它在显示第三个内部数组时工作正常,最多两个数组我收到错误。请建议我如何成功检索它。
<tr *ngFor="let priceRowData of solutionData.groups.requestDetails ;let $index=index ">
<td>{{priceRowData.ReqId}}</td>
</tr>
新 Json:解决方案详细信息 -> 组 -> 请求详细信息
{
"SolutionsDetail": [
{
"SolutionId": 658,
"name": "dk",
"id": 1568377327000,
"groups": [
{
"GroupId": 1,
"requestDetails": [
{
"ReqId": 2331,
},
]
}
]
}
]
}
我只想在 UI 中显示所有请求详细信息 id。我怎么能在这里做到这一点。