관련 설정이 있습니다
프론트 엔드 서버 (Node.js, 도메인 : localhost : 3000) <---> 백엔드 (Django, Ajax, 도메인 : localhost : 8000)
브라우저 <-webapp <-Node.js (앱 제공)
브라우저 (webapp)-> Ajax-> Django (Serve ajax POST requests)
이제 내 문제는 webapp가 백엔드 서버에 Ajax 호출을하는 데 사용하는 CORS 설정입니다. 크롬에서는 계속
신임 정보 플래그가 true 인 경우 Access-Control-Allow-Origin에서 와일드 카드를 사용할 수 없습니다.
파이어 폭스에서도 작동하지 않습니다.
내 Node.js 설정은 다음과 같습니다
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();
};
그리고 장고에서는 이 미들웨어 를 이것 과 함께 사용하고 있습니다
webapp는 다음과 같이 요청합니다.
$.ajax({
type: "POST",
url: 'http://localhost:8000/blah',
data: {},
xhrFields: {
withCredentials: true
},
crossDomain: true,
dataType: 'json',
success: successHandler
});
따라서 webapp가 보내는 요청 헤더는 다음과 같습니다.
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/
)
http
, 그것은 /
끝입니다. http를 생략해도 효과가 있다고 생각하지만 몇 년 동안 실제로이 작업을 수행하지 않았으므로 지금 무엇이 효과가 있는지 모릅니다.