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跨域的主要内容,如果未能解决你的问题,请参考以下文章