我今天尝试整理的一些 jQuery 有点麻烦。
基本上,我想要实现的是通过读取 JSON 提要动态地将价格插入到我页面上的价格按钮中。
这个想法是有一个包含价格的空跨度。我已经给出了全班的所有价格.getPriceNew
。每个跨度也有一个 id,它等于这样的项目的 SKU 编号<span class="getPriceNew" id="123456"></span>
。
机制是,对于每个具有类.getPriceNew
的跨度,将查询 JSON 以获取信息,并将 SKU id 用作查询字符串的一部分。
这是我尝试过的代码示例
jQuery
$(".getPriceNew").each(function() {
var sku = $(this).attr("id");
var priceNew = $.getJSON('/api/MyApi.svc/GetProductBySku/'+sku , function(data) {
return(data.Variants[0].Price);
});
$(this).html("€"+priceNew);
})
HTML
<span class="getPriceNew" id="123456"></span>
<span class="getPriceNew" id="789123"></span>
<span class="getPriceNew" id="456789"></span>
<span class="getPriceNew" id="654321"></span>
JSON 示例 这是来自 JSON 提要的单个项目的外观 - 我已经对其进行了一点过滤 /api/MyApi.svc/GetProductBySku/123456
使用有效的 JSON 更新
{
"Age": {
"Description": "Age 18+",
"Thumbnail": "http://someurl.com/productImages/assets/img//icon18.gif"
},
"Barcode": {
"Barcode": "5026555408684"
},
"Description": "HTML",
"Id": 12214,
"Packshots": [
"http://someurl.com/productImages/914383/1min.jpg",
"http://someurl.com/productImages/914383/2med.jpg",
"http://someurl.com/productImages/914383/3max.jpg"
],
"Pegis": [],
"Platform": {
"Button": "Format",
"ID": 0
},
"Publisher": {
"Description": null
},
"Release": "/Date(1364252400000+0100)/",
"Screenshots": [],
"Title": "Product Title",
"Variants": [
{
"Id": 22488,
"MaxOrderQuantity": 3,
"Presellable": true,
"Price": 49.97,
"Sku": 914383,
"Type": {
"Description": "Pre-Order"
}
}
],
"Vendor": {
"Description": "Take Two Interactive Software"
},
"VideoHTML": "HTML",
"status": {
"Response": "product found",
"Success": true
}
}
我希望得到一些帮助,因为在这个阶段我真的在摸我的新手头。我已经设法让 console.log 将价格输出到日志中,但是当我尝试将它们重新插入跨度时,我得到的只是 [object] [Object]。