Loading... <p>在站点的配置文件中加入</p><pre><code>location / { add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Methods GET,POST,OPTIONS; add_header Access-Control-Allow-Credentials true; add_header Access-Control-Allow-Headers DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type; add_header Access-Control-Max-Age 1728000; } </code></pre><p>即可解决跨域,缺点是所有域名都可以请求</p><p>使用下面的代码即可配置允许的域名请求</p><pre><code>location / { # 检查域名后缀 if ($http_origin ~ \.test\.com) { add_header Access-Control-Allow-Origin $http_origin; add_header Access-Control-Allow-Methods GET,POST,OPTIONS; add_header Access-Control-Allow-Credentials true; add_header Access-Control-Allow-Headers DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type; add_header Access-Control-Max-Age 1728000; } if ($request_method = OPTIONS) { add_header Access-Control-Allow-Origin $http_origin; add_header Access-Control-Allow-Methods GET,POST,OPTIONS; add_header Access-Control-Allow-Credentials true; add_header Access-Control-Allow-Headers DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type; add_header Access-Control-Max-Age 1728000; return 204; } }</code></pre> 猜你想看 vue组件数据共享 每日一学:PHP 中的array_sum函数详解 今天吃什么-解决选择困难症 linux安装企业版宝塔 ES6箭头函数this指向 PHP学习以及安装 Go的执行原理以及Go命令 每日一学:PHP 中的array_diff_key函数详解 jQuery图片移动 Axios 实现登录拦截功能:完整代码、逻辑解析和性能优化建议 最后修改:2022 年 06 月 05 日 © 允许规范转载 赞 0 如果觉得我的文章对你有用,请随意赞赏