nginx跨域+vue的withCredentials
2022/1/13 7:06:29
本文主要是介绍nginx跨域+vue的withCredentials,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
vue中配置了
axios.defaults.withCredentials = true
服务器在header中响应的是
access-control-allow-orgin: *
在vue中如上设置了withCredentials=true后,请求时需要指定路径或者服务器进行指定路径的修改,在nginx中的配置文件主要设置如下规则,其它header项根据业务需要配置
主要是
add_header 'Access-Control-Allow-Origin' $http_origin
和add_header 'Access-Control-Allow-Credentials' true
location ^~ /{ add_header 'Access-Control-Allow-Origin' $http_origin; #这里必须指定为$http_orgin,明确指定可以跨域请求的域名,替代* add_header 'Access-Control-Allow-Headers' 'Cookie, DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type'; add_header 'Access-Control-Allow-Credentials' true;#此项配合上一个header携带cookie等信息 add_header 'Access-Control-Allow-Methods' "GET,POST,PUT,DELETE,OPTIONS"; if ($request_method = 'OPTIONS'){ return 204; #预检请求返回此code } .... ...... ........ .......... }
这篇关于nginx跨域+vue的withCredentials的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16Vue3资料:新手入门必读教程
- 2024-11-16Vue3资料:新手入门全面指南
- 2024-11-16Vue资料:新手入门完全指南
- 2024-11-16Vue项目实战:新手入门指南
- 2024-11-16React Hooks之useEffect案例详解
- 2024-11-16useRef案例详解:React中的useRef使用教程
- 2024-11-16React Hooks之useState案例详解
- 2024-11-16Vue入门指南:从零开始搭建第一个Vue项目
- 2024-11-16Vue3学习:新手入门教程与实践指南
- 2024-11-16Vue3学习:从入门到初级实战教程