gpt4 book ai didi

javascript - 没有从对象中获取数组

转载 作者:数据小太阳 更新时间:2023-10-29 06:10:41 26 4
gpt4 key购买 nike

我正在使用 map 方法将对象转换为数组。以下代码中存在什么问题?

var data = {
"productName": "fsdfsdf",
"productDesc": "",
"category": null,
"categoryName": "",
"style": null,
"styleName": "",
"substyle": null,
"substyleName": "",
"store": null,
"storeName": "",
"stand": null,
"standName": "",
"rack": null,
"rackName": "",
"roll": null,
"rollName": "",
"color": null,
"width": "",
"widthunit": "meter",
"length": 0,
"lengthunit": "meter",
"pieces": "",
"cutofquantity": "",
"estimatedConsumption": ""
}

var key = $.map(data, function(value, index) {
return index;
});
var value = $.map(data, function(value, index) {
return value;
});

console.log(value)

请引用this JSFiddle 的实例。

最佳答案

因为您将 length: 0 作为您的属性之一,jQuery 认为该对象是一个数组而不是一个对象。

然后它循环遍历从 0 到 0(不包括)的数字索引并生成一个零长度数组。

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

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