我有类似的数据从托管服务返回。
[{媒体:instagram,会员:乔治,日期:02/01/2019,花费:20.00,购物车助手:2,销售额:3},
{媒体:instagram,会员:蒂娜,日期:02/01/2019,花费:10.00,购物车助手:1,销量:0},
{媒体:instagram,会员:乔治,日期:02/02/2019,花费:30.00,cart_assists:12,销售:4},
{媒体:instagram,会员:tina,日期:02/02/2019,花费:40.00,cart_assists:0,销售额:1}]
我正在尝试使用Google Apps脚本来处理数据,我添加了javascript标签,因为任何JavaScript解决方案都可以在Google Apps脚本中使用。
我希望数据看起来如下所示,但在提出解决方案时遇到了麻烦。
<table>
<th>media</th>
<th>affiliate</th>
<th>spend: 02/01/2019</th>
<th>spend: 02/02/2019</th>
<th>cart_assists: 02/01/2019</th>
<th>cart_assists: 02/02/2019</th>
<th>sales: 02/01/2019</th>
<th>sales: 02/02/2019</th>
</table>