0

该代码尝试使用jQuery.ajax()进行跨域调用:

<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js">
</script>
<script>
$(document).ready(function(){
        var request=$.ajax({
            type: "GET",
            url: "http://2.cinema-sderot.appspot.com/getSimpleJson",
            dataType: "json",
            crossDomain: true
        });

        request.done(function( msg ) {
          $("div").append("Done");
        });

        request.fail(function( jqXHR, textStatus ) {
          $("div").append("Request failed: " + textStatus);
        });
});
</script>
</head>
<body>
<div></div>
</body>
</html>

即使 URL返回有效的 JSON,代码也会失败并显示消息Request failed: error。我在 Firefox 和 Chrome 的控制台日志中都没有找到任何有用的信息。

知道有什么问题吗?

4

1 回答 1

2

即使您说crossDomain: true请求资源不支持使用 CORS 的跨域请求,请求也会失败

在这种情况下,服务器似乎不支持 CORS。

如果您使用的是 java servlet,请添加以下 herader

resp.setHeader("Access-Control-Allow-Origin", "*");
于 2013-11-14T06:12:28.530 回答