使用jquery Ajax从服务器
中检索Json
$.ajax({
url: 'yoururl',
type: 'GET',
contentType: "application/json;charset=utf-8",
success: function (data) {
// iterate over data and save it to DB
},
error: function (x, y, z) {
alert(x.responseText);
}
});
对于数据库部分,您可以查看此link,其中说明了如何从数据库存储和检索