vue-cli3.x vue.config.js 跨域配置
Posted opcec
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-cli3.x vue.config.js 跨域配置相关的知识,希望对你有一定的参考价值。
devServer: { open: true, //浏览器自动打开页面 host: "0.0.0.0", //如果是真机测试,就使用这个IP port: 8911, https: false, hotOnly: false, //热更新(webpack已实现了,这里false即可) proxy: { //配置跨域 ‘/api‘: { target: "http://139.224.234.237:3000/api", ws:true, changOrigin:true, pathRewrite:{ ‘^/api‘:‘/‘ } } } }
//调用
this.$http.get(‘/api/order/getOrder‘) .then(res => { console.log(res.data); }) .catch(err => { console.log(err.data.message); });
参考:
https://blog.csdn.net/weixin_43067157/article/details/82079792?utm_source=blogxgwz0
以上是关于vue-cli3.x vue.config.js 跨域配置的主要内容,如果未能解决你的问题,请参考以下文章
vue.config.js中的webpack配置,优化及多页面应用开发