vue跨域
Posted xiaojimeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue跨域相关的知识,希望对你有一定的参考价值。
vue.config.js文件
module.exports = {
devServer: {
// open: true,
// host: ‘localhost‘,
// port: 8080,
// https: false,
//以上的ip和端口是我们本机的;下面为需要跨域的
proxy: {//配置跨域
‘/api‘: {
target: ‘http://39/97.33.178‘,//这里后台的地址模拟的;应该填写你们真实的后台接口
changOrigin: true,//允许跨域
// ws: true,
// pathRewrite: {
// ‘^/api‘: ‘‘//请求的时候使用这个api就可以
// }
}
}
}
}
以上是关于vue跨域的主要内容,如果未能解决你的问题,请参考以下文章