我有一个来自 PHP API 的对象:
[Object { span=1, caption="Particular", master=true},
Object { span=5, caption="Loan Class 1"},
Object { span=5, caption="Loan Class 2"},
Object { span=5, caption="Loan Class 3"}]
所需的输出将是:
## Particular Loan Class 1 Loan Class 2 Loan Class 3 ##
我试图这样做:
var arrData = typeof JSONData != 'object' ? JSON.parse(JSONData) : JSONData;
for (var index in arrData[0]) {
row += index + ',';}
row = row.slice(0, -1);
CSV += row + '\r\n';
csv 的样子
## span caption master ##
请帮助如何获取标题值以及是否有脚本可以在 excel 中输出此值,因为需要添加一些列合并。