我正在尝试从Firefox到我的Tomcat服务器进行CORS POST调用。 Tomcat提供RESTful服务。这是我的服务器端返回码:
ResponseBuilder rb = Response.ok( JSON.serialize(result));
rb.header("Content-Type", "text/javascript;charset=utf8");
rb.header("Access-Control-Allow-Origin", "*");
rb.header("Access-Control-Max-Age", "3628800");
rb.header("Access-Control-Allow-Methods", "GET,POST");
return rb.build();
这是我的AJAX电话:
var feedQueryPOST = {"param" : someListOfParams, "timeWindow": 36000};
$.ajax({
type: 'POST',
url:"http://xxx.xxx.xxx.xxx:8080/MyWebService/getwebfeed",
contentType: "text/plain",
data: feedQueryPOST,
async: true,
success:function(json){
alert("success!");
},
error:function(e){
alert(JSON.stringify(e));
},
});
当我进行测试查询时,我使用RESTClient来检查标题,然后它返回:
Status Code: 200 OK
Access-Control-Allow-Methods: GET,POST
Access-Control-Allow-Origin: *
Access-Control-Max-Age: 3628800
Content-Length: 318
Content-Type: text/javascript;charset=utf8
Date: Mon, 31 Dec 2012 12:02:11 GMT
Server: Apache-Coyote/1.1
但是在我的javascript端,回调仍然是错误,readystate = 0且状态= 0.我一直在寻找答案很长一段时间无济于事。我知道我可能会遗漏一些简单的东西。感谢任何帮助,提前谢谢。
答案 0 :(得分:0)
而不是contentType: "text/plain",
,请使用dataType: 'json'
,您应该没问题