本地跨域配置是 proxy,本地测试跨域没有问题,数据能正常接受,后台能 console
"/api": {
"target": "http://132.232.22.140:8889/api",
"changeOrigin": true,
"pathRewrite": { "^/api" : "" }
}
然后部署到服务器后,在网上看了一下用 nginx 配置跨域
server {
listen 8000;
server_name localhost;
root /home/myftp/dist;
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
location ^~ /assets/ {
gzip_static on;
expires max;
add_header Cache-Control public;
}
location /api {
rewrite ^.+api/?(.*)$ /$1 break;
include uwsgi_params;
proxy_pass http://localhost:8889;
}
error_page 500 502 503 504 /500.html;
client_max_body_size 20M;
keepalive_timeout 10;
}
然后在线上测试是接口 404,但是本地测试线上的数据库接口又是通的,求大大们支支招
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.