我正嘗試使用REST調用來使用API中的數據。我已經成功從API獲取數據。 我有不同的休息電話,我爲每個人創建了不同的功能。 我想知道如果我可以存儲這些數據使用JSon如何創建JSon對象並將數據存儲在其中
它工作得很好,並獲得所有其餘調用,但我想將它們存儲在JSon對象的數據,以獲得它作爲結果爲了顯示它。
我做了什麼。 - 我創建了一個名爲Json的新對象 - 我打開使用REST調用來使用數據。 - 但每當我得到這些數據,我都有問題來存儲它們。
var jsonObj = []; //declare object
$.each(data.results, function(i,item){ // on this line
jsonObj.push({id:item.conceptUuid ,
MedicalImage: item.dataURI ,
title: item.title ,
description: item.description ,
});
$htmlstring.append($('<li/>').append($('<img/>').attr('src',jsonObj.MedicalImage) ));
$htmlstring.append("<div class='title'> title: " + jsonObj.title
+ "<br> description : "+ jsonObj.description +
"</div>")
});
$('#result').html($htmlstring);
該函數應該將查詢字符串作爲參數,服務器將數據作爲JSON返回。
你能告訴我一個例子如何使用jQuery做到這一點在JSON對象中存儲數據,以避免多次調用?
[沒有這樣的東西作爲JSON對象。](http://benalman.com/news/2010/03/theres-no-such-thing-as-a-json/) – nnnnnn
看起來正確 - 可以您發佈了實際的響應(「項目」)以及您可以在控制檯中看到的任何錯誤消息? – McGarnagle