14.7 nginx跨域

Posted O_Geek_O

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了14.7 nginx跨域相关的知识,希望对你有一定的参考价值。

编辑nginx文件  vi /usr/local/etc/nginx/nginx.conf
nginx配置如下,配置后需重启nginx nginx -s reload
location ~.*.json {
    root html;
    add_header "Access-Control-Allow-Origin" "*";
}

前端
index.html
<script>
fetch(http://localhost:1207/a.json,  {
  method: get
})
.then(res => {
  return res.text()
}).then(res => {
  console.log(res)
})
</script>

后端

index.js

let express = require(express)
let app  = express()
app.use(express.static(__dirname))
app.listen(3000)

 

 

 




以上是关于14.7 nginx跨域的主要内容,如果未能解决你的问题,请参考以下文章

使用nginx代理解决跨域问题

nginx 解决跨域、手机测试 2019-05-27

nginx配置反向代理解决vue跨域问题

php设置了跨域没用,是nginx问题吗

宝塔面板Nginx反向代理解决跨域问题

如何搞定前端资源服务跨域问题之nginx篇