Webpack devServer中的 proxy 实现跨域的解决
webpack dev server使用http-proxy解决跨域问题
文档资料
vue-cli proxytable 解决开发环境的跨域问题——虽然这篇是写vue的,不过用在webpack-dev-server上也是一样的
——webpack-dev-server的实现方法其实是对这个的封装
配置http-proxy
在webpack的配置文件(webpack.config.js
)中进行配置
module.exports = { ...此处省略一万字 // webpack-dev-server的配置 devserver: { historyapifallback: true, hot: true, inline: true, progress: true, port: 3000, host: '10.0.0.9', proxy: { '/test/*': { target: 'http://localhost', changeorigin: true, secure: false } } }, ...此处省略一万字 };
上述配置中,关于http-proxy的只是 proxy:
{...}
中的值
调用接口
为了方便起见,下面使用jquery封装好的ajax函数进行示范
$.ajax({ // url: 'http://10.0.0.9:3000/test/testfetch/login.php', // 这样不行 url: '/test/testfetch/login.php', // 这样行 type: 'post', data: { app_id: '13751313169', password: '123456', user_name: 'nicholas' }, success: function(data) { console.log(data); } });
proxy中的部分参数说明
'/test/*' 以及 target:
'http://localhost'
从名字就能看出,这个实际上是将匹配 '/test/*' 这种格式的api的域名重定向为 'http://localhost'
结合上面的 “调用接口” 可以看出, url:
'/test/testfetch/login.php' 这句,实际上会自动补充前缀,也就是说,url:
'/test/testfetch/login.php' 等价于 url: 'http://10.0.0.9:3000/test/testfetch/login.php'
但是,我们使用了http-proxy进行重定向,这样的话,url:
'/test/testfetch/login.php' 等价于 url: 'http://localhost/test/testfetch/login.php'
changeorigin
- true/false, default: false - changes the origin of the host header to the target url
- 本地会虚拟一个服务端接收你的请求并代你发送该请求——这个是别人的说法
- 我试了一下,就算这个参数设置成 false 也有部分情况是可以的,具体原因不详,所以还是将其设置成 true 吧
secure
- true/false, if you want to verify the ssl certs
pathrewrite
例子: pathrewrite:
{'^/api': ''}
object-keys will be used as regexp to match paths
我猜,这里是将 '^/api' 使用 '' 代替(只是我猜,没是成功,估计是我的正则表达式写得不行)
附上使用fetch api的代码
上述代码与 “调用接口” 中使用 $.ajax() 实现的效果是一样的
let testasync = async function () { var feeling = { app_id: '13751313169', password: '123456', user_name: 'nicholas' }; var fetchparams = { method: 'post', headers: { 'accept': 'application/json', 'content-type': 'application/json' }, credentials: 'include', // 将凭证也带上(例如cookies) body: json.stringify(feeling), }; let temp = await fetch('/test/testfetch/login.php', fetchparams).then(response => response.text()); console.log(temp); // 这个就是一个json对象 return temp; }; let data = testasync(); // async函数返回值是一个promise对象 console.log(data); // 这个是一个promise对象
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: vue 图片切换动态绑定
下一篇: JS中事件绑定函数,事件捕获,事件冒泡
推荐阅读
-
【原创】微信授权、获取用户openid-纯前端实现——jsonp跨域访问返回json数据会报错的纯前端解决办法
-
php中http与https跨域共享session的解决方法,httpssession
-
SpringBoot+Spring Security无法实现跨域的解决方案
-
php中cookie跨域的解决方案以及IE和safari浏览器中的坑
-
php中session跨域跨服务器的解决方案
-
ThinkPHP框架实现session跨域问题的解决方法
-
HTML5中使用postMessage实现Ajax跨域请求的方法
-
spring cloud实现前端跨域问题的解决方案
-
ThinkPHP框架实现session跨域问题的解决方法
-
spring cloud实现前端跨域问题的解决方案