# 网页内嵌微信页面解决跨域cors-anywhere
采用一个无侵入式的解决方案,通过cors-anywhere转发请求即可
# 1.docker方式安装cors-anywhere
docker pull testcab/cors-anywhere
1
# 2.启动
docker run -d \
--restart=always \
-p 9060:8080 \
--name cors-anywhere \
testcab/cors-anywhere
1
2
3
4
5
2
3
4
5
- 测试环境 192.168.1.203:9060
- 生产环境 47.98.55.245:9060
把地址给前端,前端访问时候加上这个前缀即可