假设我有一个Tornado Web服务器(localhost)和一个网页(othermachine.com),后者包含需要对Tornado服务器进行跨域ajax调用的javascript.
所以我设置了我的龙卷风:
class BaseHandler(tornado.web.RequestHandler):
def set_default_headers(self):
self.set_header("Access-Control-Allow-Origin", "http://www.othermachine.com")
self.set_header("Access-Control-Allow-Credentials", "true")
self.set_header("Access-Control-Allow-Methods", "GET,PUT,POST,DELETE,OPTIONS")
self.set_header("Access-Control-Allow-Headers",
"Content-Type, Depth, User-Agent, X-File-Size, X-Requested-With, X-Requested-By, If-Modified-Since, X-File-Name, Cache-Control")
Run Code Online (Sandbox Code Playgroud)
我的javascript调用jQuery:
$.ajax({
type: 'GET',
url: "http://localhost:8899/load/space",
data: { src: "dH8b" },
success: function(resp){
console.log("ajax response: "+resp);
},
dataType: 'json',
beforeSend: function ( xhr ) {
xhr.setRequestHeader('Content-Type', 'text/plain');
xhr.setRequestHeader('Access-Control-Request-Method', 'GET');
xhr.setRequestHeader('Access-Control-Request-Headers', 'X-Requested-With');
xhr.withCredentials = true;
}
});
Run Code Online (Sandbox Code Playgroud)
但我得到了可爱的XMLHttpRequest cannot load http://localhost:8899/load/space?src=dH8b. Origin http://www.othermachine.com is not allowed by Access-Control-Allow-Origin
错误.我无法分辨jQuery/Tornado(或两者兼而有之?)的哪一方面我没有正确设置.
根据开发工具,这些是jQuery请求发送的头文件:
请求标题
Accept:*/*
Origin:http://www.othermachine.com
Referer:http://www.othermachine.com/athletes.html?src=BCYQ&msgid=6xjb
User-Agent:Mozilla/5.0 ...
Run Code Online (Sandbox Code Playgroud)
如果我只是从浏览器的url字段发出请求,我会得到一个"200 …