我正在尝试使用 REST 调用从 API 消费数据。我已成功从 API 获取数据。我有不同的休息电话,我为每个人创建了不同的功能。我想知道我是否可以使用 JSon 存储这些数据
它运行完美,并获得了所有的 Rest 调用,但我想将它们存储在 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 对象中以避免多次调用吗?