- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我已经看到许多类似的问题,但没有一个能让我更接近解决方案。
我从电子商务 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 + "'>");
});
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!