あるとき、私はCORS:(:localhostを:3000のNode.js、ドメイン)< --->バックエンド(資格情報フラグが真
フロントエンドサーバーを含むセットアップを持っているアクセス制御 - 許可 - 起源でワイルドカードを使用することはできませんジャンゴ、アヤックス、ドメイン:localhostを:8000)
ブラウザ< - Webアプリケーション< - Node.jsの(サーブアプリ)
ブラウザ(Webアプリケーション) - >アヤックス - > Djangoは(AJAX POSTサーブリクエスト)
ここで私の問題はwebappがAjaxをバックエンドサーバーに呼び出すために使用するCORS設定。クロムでは、私は得るつもりです
Cannot use wildcard in Access-Control-Allow-Origin when credentials flag is true.
は、いずれもfirefoxで動作しません。
var allowCrossDomain = function(req, res, next) {
res.header('Access-Control-Allow-Origin', 'http://localhost:8000/');
res.header('Access-Control-Allow-Credentials', true);
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE');
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
};
とDjangoで私はWebアプリケーションのようなリクエストになりthis middlewarealong with this
を使用しています:
マイNode.jsの設定がある
$.ajax({
type: "POST",
url: 'http://localhost:8000/blah',
data: {},
xhrFields: {
withCredentials: true
},
crossDomain: true,
dataType: 'json',
success: successHandler
});
ので、リクエストヘッダをWebアプリケーションから送信されるメッセージは次のようになります。
Access-Control-Allow-Credentials: true
Access-Control-Allow-Headers: "Origin, X-Requested-With, Content-Type, Accept"
Access-Control-Allow-Methods: 'GET,PUT,POST,DELETE'
Content-Type: application/json
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Cookie: csrftoken=***; sessionid="***"
そしてここでは、レスポンスヘッダだ:私は間違っているつもりです
Access-Control-Allow-Headers: Content-Type,*
Access-Control-Allow-Credentials: true
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: POST,GET,OPTIONS,PUT,DELETE
Content-Type: application/json
!
編集1:私はchrome --disable-web-security
を使用していましたが、実際には実際には動作します。
編集2:回答:だから
、私のためのソリューションdjango-cors-headers
設定:
CORS_ORIGIN_ALLOW_ALL = False
CORS_ALLOW_CREDENTIALS = True
CORS_ORIGIN_WHITELIST = (
'http://localhost:3000' # Here was the problem indeed and it has to be http://localhost:3000, not http://localhost:3000/
)
を...私はあなたを愛して...私はそれをデバッグする時間を費やした....まあ、Firefoxはどんなメッセージも返さなかった! – Daviddd
私にとって、それはlocalhostです:このように、HTTPを使用しない3000: CORS_ORIGIN_WHITELIST =( は 'ローカルホスト:3000'、 )を – Andrei
あなたは一台のPCでのフロントエンドとバックエンドの開発使う意味しますか? – fanhualuojin154873