1

ローカルでフラスコを実行し、呼び出しを試みています:

@app.route('/foo_route', methods=['POST'])
@cross_origin(origin='*')
def foo():
    return redirect("https://www.google.com/")

そして、次のエラーが表示されます。

XMLHttpRequest はhttps://www.google.com/を読み込めません。要求されたリソースに「Access-Control-Allow-Origin」ヘッダーがありません。したがって、オリジン「http://127.0.0.1:5000」へのアクセスは許可されていません

CORSをそのまま使用しようとしました:

app = Flask(__name__)
CORS(app)

私のルートの @cross_origin() と一緒に。ここで何がうまくいかないのですか?これは、ローカルで実行しているときにクロムのバグである可能性があると読んでいましたか? .

4

2 に答える 2

4

私もこれと同じ問題を抱えていました!これは Chrome のバグではなく、セキュリティのために Chrome に組み込まれています。(Cross Origin Resource Sharing) は、Apachehttpd.conf or apache.conf or .htaccess構成ファイルに存在する必要があるヘッダーです。NGINXを利用している場合はdefaults.conf or nginx.conf file、Webサーバーが自ドメイン以外からのHTTPリクエストを受け付けるようにするのが基本です。これを修正する「本当の」方法は、実際に (ssh 経由で) Web サーバーにアクセスし、該当する .conf を編集してこのヘッダーを含めることです。Apache を使用している場合はHeader set Access-Control-Allow-Origin "*"、ファイルの先頭に追加します。これを行った後、変更が保存されていることを確認するために apache を再起動します ( service httpd restart)。NGINX を使用している場合は、次の構成を使用します。

   #
# Wide-open CORS config for nginx
#
location / {
     if ($request_method = 'OPTIONS') {
        add_header 'Access-Control-Allow-Origin' '*';
        #
        # Om nom nom cookies
        #
        add_header 'Access-Control-Allow-Credentials' 'true';
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
        #
        # Custom headers and headers various browsers *should* be OK with but aren't
        #
        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
        #
        # Tell client that this pre-flight info is valid for 20 days
        #
        add_header 'Access-Control-Max-Age' 1728000;
        add_header 'Content-Type' 'text/plain charset=UTF-8';
        add_header 'Content-Length' 0;
        return 204;
     }
     if ($request_method = 'POST') {
        add_header 'Access-Control-Allow-Origin' '*';
        add_header 'Access-Control-Allow-Credentials' 'true';
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
     }
     if ($request_method = 'GET') {
        add_header 'Access-Control-Allow-Origin' '*';
        add_header 'Access-Control-Allow-Credentials' 'true';
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
     }
}

さて、あなたの例を考えると、Webサーバーにアクセスできないと思います(GoogleのURLをURLに入れているため)。ここがややこしいところです。

オプションの 1 つは、http://www.whateverorigin.org/を使用することです。CORS をバイパスし、データを効果的に取得します。それを使用するには、次を実行します。

$.getJSON('http://whateverorigin.org/get?url=' + encodeURIComponent('http://google.com') + '&callback=?', function(data){
    alert(data.contents);
});

これにより、Web サーバーに存在する CORS に関係なく、応答が取得されます。

既存のコードを変更したくなく、Google Chrome を使用している場合、この CORS の問題を回避する方法があります。できることの 1 つは、このブラウザー拡張機能をインストールすることです: https://chrome.google.com/webstore/detail/allow-control-allow-origi/nlfbmbojpeacfghkpbjhddihlkkiljbi?utm_source=plus を使用すると、CORS をバイパスしてプログラムを実行できます。

これがうまくいくことを願っています!

于 2016-09-24T03:12:51.620 に答える