vue2在vue.config.js中设置以下代码
module.exprots = {
devServer: {
open: true, // 配置项目在启动时自动在浏览器打开
proxy: {
'/api' : { // '/api'是代理标识,一般是每个接口前的相同部分
target: "http://xxxxx/api", // 请求地址,一般是服务器地址
changeOrigin: true, // 是否进行跨域
pathRewrite: { // pathRewrite的作用是把请求接口中的 '/api'替换掉,一般是替换为空""
'^/api':""
}
}
},
host:'localhost',
}
}