使用jQuery和Tornado实现跨源资源共享(CORS)

cross-origin resource sharing (CORS) with jQuery and Tornado

本文关键字:资源共享 CORS jQuery Tornado 实现 使用      更新时间:2023-09-26

比方说,我有一个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")

我的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;
    }
});

但我得到了可爱的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 ...

如果我只是从浏览器的url字段发出请求,我会得到一个"200 OK":

响应标头

Access-Control-Allow-Credentials:true
Access-Control-Allow-Headers:Content-Type, User-Agent, X-Requested-With, X-Requested-By, Cache-Control
Access-Control-Allow-Methods:GET,POST
Access-Control-Allow-Origin:http://www.othermachine.com
Content-Length:0
Content-Type:text/html; charset=UTF-8
Server:TornadoServer/2.2.1

这是否意味着龙卷风正在发挥作用?我试图遵循所有stackoverflow CORS+jQuery帖子的建议(例如这个),但没有成功。CORS在概念上似乎很简单,但也许我从根本上误解了CORS事务中应该发生的事情。。。请帮忙!提前谢谢。

Nevermind,编码太晚和太长会导致人们被打字错误大小的东西绊倒。记录在案,这就是jQuery:所需要的全部内容

var data = { msgid: "dH8b" },
    url = "http://localhost:8899/load" + '?' + $.param(data);
$.getJSON( url, function(resp){
    console.log("ajax response: "+resp+" json="+JSON.stringify(resp));
});

这就是你所需要的龙卷风:

class BaseHandler(tornado.web.RequestHandler):
    def set_default_headers(self):
        self.set_header("Access-Control-Allow-Origin", "http://www.othermachine.com")

使用jQuery 1.7.2,Tornado 2.2.1。

尝试将原点设置为:othermachine.com。它应该是域名,而不是网站地址