1、网上有好多跨域请求的案例。最多的如下:
在项目下的配置文件中添加:
#add_header 'Access-Control-Allow-Origin' '*' always;
#add_header 'Access-Control-Allow-Credentials' 'true';
#add_header 'Access-Control-Allow-Methods' 'GET,POST,OPTIONS';
对我来说不好使,都失败了。最后尝试了一种方法成功了。
如下:
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Methods 'GET,POST';
add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';
其次我这个是vue项目的跨域请求:
vue也要做一处相应的修改,如下:
withCredentials:true
好多都是false。也是导致跨域访问失败的原因