gpt4 book ai didi

javascript - 根据 ID 遍历 JSON

转载 作者:行者123 更新时间:2023-11-28 01:28:23 24 4
gpt4 key购买 nike

我正在开发一个网上商店模板,我需要根据商店中的每个产品在单击给定产品时打开的模式中显示正确的 JSON 数据。我还使用 handlebars 进行模板化并具有以下代码结构:

.html(打开模式的按钮)

<button type="button" class="quickview">Open Modal</button>

.html(模态)

<div id="quickview-modal">
modal content that should iterate over the JSON and display one item at a time depending on the ID
</div>

.json

{
"productID" : "1",
"name" : "productOne"
},
{
"productID" : "2",
"name" : "productTwo"
}

.js

$( ".quickview" ).click(function( event ) {
$('#quickview-modal').modal('show');
event.stopPropagation();
// Do something
});

有什么办法可以解决这个问题吗?谢谢!

最佳答案

说你的 .json 变量是 data

 var data = 'your JSON';
$.each(data,function(i,v){
alert(v.productID); //will give you the value related to productID.
});

已更新

$( ".quickview" ).click(function( event ) {
event.stopPropagation();
var data = 'your JSON';
$.each(data,function(i,v){
$('#quickview-modal').append(v.name + " : " + v.productID);

});
$('#quickview-modal').modal('show');
});

关于javascript - 根据 ID 遍历 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31181019/

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