我正在从phonegap(appgyver类固醇)应用程序发出以下JQuery跨域ajax发布请求。
function do_something(callback_method, some_vars)
{
var stringified_some_vars = JSON.stringify(some_vars);
$.ajax({
type: "POST",
url:"http://www.somedomain.com/endpoint",
data: {'some_vars' : stringified_some_vars},
async: true,
dataType: 'json',
crossDomain: true,
xhrFields: {
withCredentials: true
},
success: function(result)
{
var myObject = $.parseJSON(result);
callback_method(myObject);
},
error: function(fail)
{
supersonic.logger.debug(fail);
}
});
}
发布请求已成功发送到服务器(Google Appengine-Python)-即服务器触发了相关方法。但是,当收到服务器响应时,jQuery Ajax方法不会触发成功处理程序,而是触发错误处理程序。错误文本以以下方式打印到控制台
{"readyState":0,"responseText":"","status":0,"statusText":"error"}
来自服务器的json响应中的标头如下:
Content-Length: 0
Cache-Control: no-cache
Access-Control-Allow-Origin: *
Content-Type: application/json
响应的内容符合预期。并使用
text_to_send = json.dumps(python_dict)
self.response.headers.add_header('Access-Control-Allow-Origin', '*')
self.response.headers['Content-Type'] = 'application/json'
self.response.write(text_to_send)
我不清楚此错误来自何处。允许跨域请求似乎并未解决该问题。 jsonp GET请求可以正常工作-但显然,POST请求不允许使用这些请求。谁能告诉我我要去哪里错了?
编辑1
遵循@Faisal的建议,我如下调整了服务器代码
from urlparse import urlparse
uri = urlparse(self.request.referer)
origin = '{}://{}'.format(uri.scheme, uri.netloc)
self.response.headers.add_header('Access-Control-Allow-Origin', origin)
self.response.headers['Content-Type'] = 'application/json'
标头现在
Content-Length: 0
Cache-Control: no-cache
Access-Control-Allow-Origin: http://localhost
Content-Type: application/json
但是遇到相同的错误
最佳答案
我认为,如果使用withCredentials:是的,则需要您的来源是完全匹配的,而不是通配符(*)。这是一个从引荐来源获取代码的快速代码。但您可能还应该检查其是否为允许的来源之一:
from urlparse import urlparse
uri = urlparse(self.request.referer)
origin = '{}://{}'.format(uri.scheme, uri.netloc)
编辑
尝试添加:
self.response.headers.add_header('Access-Control-Allow-Credentials', 'true')