我是 json、js 等的新手。所以我对这一切、httprequests 等有点困惑。我正在尝试从响应中提取数据。首先我做了 XMLHttpRequest,但我在 Stackoverflow 上阅读了这里,最好使用 jquery 或类似的框架,因为我已经使用 jquery mobile,所以感觉很自然。
现在的问题是如何从“响应”中获取数据。
XMLHttpRequest.response 文本如下所示:
{"list":null,"data":{"id":95,"picture":"/content/picture/icons/Rome","text":"En galning hældte forleden 1 ton sukker i Roms officielle vandforsyning","appId":1,"textHeader":"Rome sweet Rome!!","localAction":"url(http://www.b.dk)","sortOrder":0,"lastCheck":null},"expires":2592000000,"server":null}
现在,当我想按照jquery中的示例进行操作时,我得到了一个对象。但数据中没有任何内容。*
他们的代码:
var startUrl = "http://localhost:8080";
function httpGet(theUrl)
{
$.getJSON(startUrl+theUrl,
function(data){
alert(data);
$.each(data.items, function(i,item){
alert(i+item);
});
});
}
如何从中取出我的代码?