web-dev-qa-db-ja.com

jQueryおよびTornadoを使用したクロスオリジンリソースシェアリング(CORS)

たとえば、Tornado Webサーバー(localhost)とWebページ(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フィールドからリクエストを送信するだけで、次のように「200OK」が表示されます。

応答ヘッダー

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

それはトルネードがその仕事をしていることを意味しますか?すべてのstackoverflowCORS + jQuery投稿(例: this )のアドバイスに従おうとしましたが、役に立ちませんでした。 CORSの概念は十分に単純に見えますが、CORSトランザクションで何が起こるかを根本的に誤解している可能性があります...助けてください!前もって感謝します。

19
kradeki

コーディングが遅すぎたり長すぎたりすると、タイプミスのサイズのものにつまずくことになります。ちなみに、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、Tornado2.2.1を使用します。

18
kradeki