gpt4 book ai didi

javascript - 在javascript中从json对象获取数据

转载 作者:行者123 更新时间:2023-12-03 07:14:57 25 4
gpt4 key购买 nike

我从 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 中输出该标题值,因为需要添加一些列合并。

最佳答案

您应该迭代整个数组,而不仅仅是 arrData[0] 中的对象。而且您不应该使用 for (index in object),它只是将 index 设置为键,而不是值。然后要访问字幕,请使用 .caption

for (var i = 0; i < arrData.length; i++) {
row += arrData[i].caption + ',';
}

关于javascript - 在javascript中从json对象获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36470128/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com