核心提示:ps:最近在本地访问远程服务器接口的时候,出现跨域的问题,以前的解决方案是后台会给支持跨域请求的问题,现在不给支持跨域的请求,那么如何在前端支持访问远程api接口呢?!,这里通过nginx反向代理来解...
ps:最近在本地访问远程服务器接口的时候,出现跨域的问题,以前的解决方案是后台会给支持跨域请求的问题,现在不给支持跨域的请求,那么如何在前端支持访问远程api接口呢?!,这里通过nginx反向代理来解决跨域问题。
什么情况下存在跨域问题? 如何解决跨域 1.通过nginx代理方式 2.通过node.js npm corsproxy代理解决跨域问题
什么情况下存在跨域问题?
1.本地html访问外部服务器资源。
2.同在本地,不在同一端口下也存在跨域。
如何解决跨域
1.通过nginx代理方式
设置nginx conf/nginx.conf文件进行反向代理 https://xxx.xx.xx.xx:port/ 对应后台api url
location /ser/ { add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Credentials' 'true'; add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type'; #proxy_set_header Host $host; #proxy_set_header X-Real-IP $remote_addr; #proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Cookie $http_cookie; proxy_pass https://xxx.xx.xx.xx:port/; proxy_cookie_path / /ser/; proxy_cookie_domain domino.server nginx.server; proxy_redirect off; }
访问方式:
ajax请求url /ser/user/login
/ser 为nginx中自定义的模块 proxy_cookie_path 与location 定义的别名 保持一致 项目需放置在nginx目录下的html目录中.
2.通过node.js npm corsproxy代理解决跨域问题
通过npm 安装 npm install -g corsproxy-https
corsproxy 运行命令
出现上图所示即完成跨域:<喎?http://www.weiyer.com/Search.asp?KeyWord=/kf/ware/vc/" target="_blank" class="keylink">vcD4NCjxwPtTaYWpheMfrx/N1cmzM7bzTyc/S1MnPtdjWt7y0v8k6PC9wPg0KPHByZSBjbGFzcz0="brush:sql;"> https://localhost:1337/172.168.18.110:8080/user/login
这样就完成了跨域访问.