0

我有以下 jquery 代码:

$(document).ready(function() 
{
    $('button').click(function() 
    {
        $.getJSON('http://world.needforspeed.com/SpeedAPI/ws/game/nfsw/server/status?output=json', function(json)
        {
            alert("Entered getJSON");

            $("#output").append("working...");            
            if(json.status.indexOf("success")===0)
            {
                alert("success");
                $.each(json.results, function(i, data) 
                {
                    $("#output").append(data.text);
                });
            }else
            {
                alert("Failed to load url");
            }
        });
    });
});

从 url 中提取的 json 如下所示:

{"worldServerStatus": {
 "customMessage": "",
 "lastChangedDate":  {
  "date": 31,
  "day": 4,
  "hours": 17,
  "minutes": 48,
  "month": 4,
  "nanos": 0,
  "seconds": 32,
  "time": 1338486512000,
  "timezoneOffset": 0,
  "year": 112
 },
 "localizedMessage": "The servers are currently up and running.",
 "message": "ALL_SYSTEMS_GO",
 "status": "UP"
}}

我的 jquery 只是拒绝输入 $.getJSON 函数,“enetered getJSON”警报不会触发。

怎么了?

解决了。谢谢你们 :)

4

3 回答 3

3

你检查控制台了吗?您可能遇到了访问控制来源错误

jQuery.getJSON - 访问控制允许来源问题

于 2012-06-11T13:39:38.203 回答
1

您不能从另一个域获取 JSON,除非它们支持CORS,因为它们具有相同的来源策略

api 支持jsonp吗?

于 2012-06-11T13:40:19.830 回答
0

我不认为你能做到这一点。对于跨域 ajax 请求,api 提供者必须使用 jsonp。您可以做的是为请求创建一个 php 文件。让我们调用文件 request.php

<?php   
/* gets the data from a URL */
function get_data($url)
{
  $ch = curl_init();
  $timeout = 5;
  curl_setopt($ch,CURLOPT_URL,$url);
  curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
  curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
  $data = curl_exec($ch);
  curl_close($ch);
  return $data;
}

$query = $_SERVER['QUERY_STRING'];
$url = ('http://world.needforspeed.com/SpeedAPI/ws/game/nfsw/server/status?'.$query);

echo get_data($url);

?>

然后在你的 javascript

$.getJSON('http://myserver.com/request.php?output=json', function(json) 
于 2012-06-11T13:46:03.130 回答