标签:.com 调试 跨域 proxy alt url serve hang .json
通过这种方法也可以解决跨域的问题。
使用http-proxy-middleware 代理解决(项目使用vue-cli脚手架搭建)
例如请求的url:“http://f.apiplus.cn/bj11x5.json”
1、打开config/index.js,在proxyTable中添写如下代码:
1
2
3
4
5
6
7
8
9
|
proxyTable: { ‘/api‘: { //使用"/api"来代替"http://f.apiplus.c" target: ‘http://f.apiplus.cn‘, //源地址 changeOrigin: true, //改变源 pathRewrite: { ‘^/api‘: ‘http://f.apiplus.cn‘ //路径重写 } } } |
2、使用axios请求数据时直接使用“/api”:
通过这中方法去解决跨域,打包部署时还按这种方法会出问题。解决方法如下:
标签:.com 调试 跨域 proxy alt url serve hang .json
原文地址:https://www.cnblogs.com/stylesu/p/9100265.html