我想将邮递员测试中的以下数据可视化为带有product、price和quantity的列和Items行的表格。可能有多个 ShippingGroups。
{
...
"companyGroups": [
{
...
"shippingGroups": [
{
"id": 1,
"items": [
{
"product": "Product A",
"price": 2,
"quantity": 1,
},
{
"product": "Product B",
"price": 4,
"quantity": 4,
}
],
...
]
}
],
{{#each response???}}我在引用多个级别对象中的项目时遇到问题。预期的格式应该类似于:
<table>
<tr>
<th>Product</th>
<th>Price</th>
<th>Quantity</th>
</tr>
{{#each response???}}
<tr>
<td>{{???product}}</td>
<td>{{???price}}</td>
<td>{{???quantity}}
</tr>
{{/each}}
</table>
DIEA
相关分类