0
請幫助我解決如何在json文件中存儲圖像以及如何檢索我已經嘗試的 。但我不能夠如何將圖像包含在json對象中以及如何檢索它
$(document).ready(function() {
var jsonURL = "data/data.json";
$.getJSON(jsonURL, function (json)
{
var imgList= "";
$.each(json.products, function() {
imgList += '<li><img src= "' + this.imgPath + '"></li>';
});
$('#dvProdList').append(imgList);
});
});
<div>
<ul></ul>
</div>
在這裏
你在'each'中的'this'是什麼評估? – callback