Nginx 轻松搞定跨域问题
在反向代理时通过增加add_header 解决
server {
listen 22222;
server_name localhost;
location / {
#add_header Access-Control-Allow-Origin 'http://localhost:8080' always;
add_header 'Access-Control-Allow-Origin' '*'; #会显示在响应头里面
add_header 'Access-Control-Allow-Headers' '*';
add_header 'Access-Control-Allow-Methods' '*';
add_header 'Access-Control-Allow-Credentials' 'true'; #解决跨域cookie的问题
if ($request_method = 'OPTIONS') {
return 204;
}
proxy_pass http://localhost:59200;
proxy_set_header Cookie $http_cookie; #解决跨域cookie的问题
}
}
使用django-cors-headers 模块
Django跨域问题解决