gpt4 book ai didi

javascript - 从 .each 循环中的 javascript 数组获取 "undefined"

转载 作者:行者123 更新时间:2023-11-30 12:19:48 39 4
gpt4 key购买 nike

<分区>

我已经看到许多类似的问题,但没有一个能让我更接近解决方案。

我从电子商务 API 收到这样的数据:(请记住,我无法控制数据是如何发送给我的,所以我无法在“源”处更改任何内容。)

Object {
url: "http://pathtomyimage.jpg", name: ""}
name: ""url: "http://pathtomyimage.jpg"

__proto__: Object__defineGetter__: __defineGetter__() { [native code] }__defineSetter__: __defineSetter__() { [native code] }__lookupGetter__: __lookupGetter__() { [native code] }__lookupSetter__: __lookupSetter__() { [native code] }constructor: Object() { [native code] }hasOwnProperty: hasOwnProperty() { [native code] }isPrototypeOf: isPrototypeOf() { [native code] }propertyIsEnumerable: propertyIsEnumerable() { [native code] }toLocaleString: toLocaleString() { [native code] }toString: toString() { [native code] }valueOf: valueOf() { [native code] }get __proto__: __proto__() { [native code] }set __proto__: __proto__() { [native code] }

这些本质上是我想在 .each 语句上循环并获取 url 的图像。坦率地说,我不知道所有 Proto 的东西是什么?但我对输出任何内容都不感兴趣。

这就是我正在做的:

$(data.images).each(function(index, value) {

console.log(this.url); // This is what is outputting the array you see above

});

我得到了 URL,但我也得到了“未定义”,如果我尝试在 .each 循环中这样做会破坏图像...

$(data.images).each(function(index, value) {
$('#myContainer').append("<img src='" + this.url + "'>");
});

在此先感谢您的建议和帮助。

编辑 - 我被要求发布整个字符串。如果我 console.log(data) 这就是我得到的。这是一大堆......好吧,东西。我没有展开每个对象,但我相信这会让您了解整个对象的结构。在我试图将它配对到我遇到问题的地方之前,但如果你相信整个字符串会有所帮助,就在这里。

Object
availability: Objectcode: "M"__proto__: Object__defineGetter__: __defineGetter__() { [native code] }__defineSetter__: __defineSetter__() { [native code] }__lookupGetter__: __lookupGetter__() { [native code] }__lookupSetter__: __lookupSetter__() { [native code] }constructor: Object() { [native code] }hasOwnProperty: hasOwnProperty() { [native code] }isPrototypeOf: isPrototypeOf() { [native code] }propertyIsEnumerable: propertyIsEnumerable() { [native code] }toLocaleString: toLocaleString() { [native code] }toString: toString() { [native code] }valueOf: valueOf() { [native code] }get __proto__: __proto__() { [native code] }set __proto__: __proto__() { [native code] }

averageDealerMargin: "0.50"
currency: "USD"
customFields: Array[0]
image: "http://pathtoaimage.jpg"
// Here's the trouble maker...
images: Array[2]0: Objectname: ""url: "http://pathtoanotherimage.jpg"__proto__: Object1: Array[0]length: 2__proto__: Array[0]
locale: "en-US"
name: "ProductName"
partNumber: "700"
price: "19.99"
priceDisplay: "$19.99"
shippingMethod: "3"
weight: Object
units: "lb"
value: "1.8"
__proto__: Object__proto__: Object

抱歉,如果之前不是很清楚,我真的很感谢这里的帮助。我断断续续地研究这个问题大约 2 天。

再编辑...这里的一个答案确实点击了一些我没有考虑过的东西,因为没有函数返回。为了进一步说明我是如何提取这些数据的,我正在使用函数,因为我首先要检查我引用的产品是否合法。这是 Shopatron API FWIW,缺少文档,这将是一个很好的表达方式......所以无论如何你会在脚本顶部看到对它的引用,如下所示:

var partNumber = '<?php echo $productID; ?>';
$(document).ready(function() {
Shopatron.getProduct({
partNumber: partNumber
},{
success: function(p) {
outputProductName(p);
outputProductImage(p);
outputProductAdditionalImages(p);
outputProductPrice(p);
outputDescription(p);
outputSpecs(p);
},
templateFriendly : false
}
);

现在我的功能如下:

function outputProductAdditionalImages(data) {
$('#myContainer').append("<img src='" + this.url + "'>");
});

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