我是这个网络编程的新手。我想在javascript中获得第三方域的json响应。所以我尝试了Ajax http请求,但它只适用于同一个域。所以我正在尝试使用jsonp和jquery。 getjson.Still我没有得到任何结果请帮助我。
代码:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>get json in alert</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$.getJSON("http://cricketapi.mblogi.com/sfsjson.php?callback=?", function(result){
//response data are now in the result variable
alert(result);
});
</script>
</head>
<body>
</body>
</html>
答案 0 :(得分:0)
您需要确保您使用的URL以json格式返回数据。
例如,更新代码以访问Flickr Feed:
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?ids=8623220@N02&format=json&jsoncallback=?", function(result){
//response data are now in the result variable
alert(result);
});
这里的密钥位于URL的末尾,&format=json&jsoncallback=?
告诉Flickr服务器发送回json数据。
因此,您的解决方案是更新网址。