gpt4 book ai didi

javascript - JSON 对象的长度

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:51:50 26 4
gpt4 key购买 nike

<分区>

此函数正在生成一个包含 json 对象的数组:

var estoque={};
function unpack_estoque(tnm,total,estoque_vl,id,tid,st) {
tnm=tnm.split("|");
total=total.split("|");
estoque_vl=estoque_vl.split("|");
id=typeof id != 'undefined' ? id.split("|") : null;
tid=typeof tid != 'undefined' ? tid.split("|") : null;
st=typeof st != 'undefined' ? st.split("|") : null;

for (var i in tnm)
estoque[i]={
"id": id != null ? id[i] : null,
"tid": tid != null ? tid[i] : null,
"total": total[i],
"estoque": estoque_vl[i],
"tnm": tnm[i],
"st": st != null ? st[i] : null
};
}

现在我如何获得 estoque 长度来遍历收集的项目?

estoque.length 返回 undefinedfor (var i in estoque) 循环遍历 JSON 对象而不是 estoque[] 根数组。

谢谢。

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