现在有一需求,前端上传文件,然后另一需求是通过 Ajax 获取该文件,故使用了 nginx 来让前端获取文件,但由于域名不同访问 nginx 发生了跨域问题,请问有什么解决思路
访问 nginx 跨域如何解决
相关帖子
-
- 其他回帖
-
-
server{ listen 80; server_name www.b.com; location / { add_header "Access-Control-Allow-Origin" "http://www.a.com"; add_header "Access-Control-Allow-Methods" "GET, POST, OPTIONS"; add_header "Access-Control-Allow-Headers" "X-Requested-With, access_token"; add_header "Access-Control-Allow-Credentials" "true"; add_header "Access-Control-Expose-Headers" "Date"; if ($request_method = 'OPTIONS') { add_header "Access-Control-Allow-Origin" "http://www.a.com"; add_header "Access-Control-Allow-Methods" "GET, POST, OPTIONS"; add_header "Access-Control-Allow-Headers" "X-Requested-With, acces_token"; add_header "Content-Type" "text/plain charset=UTF-8"; add_header "Content-Length" 0; add_header "Access-Control-Max-Age" 1728000; return 204; } } }
-
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于