vue-cli 4的跨域解决方案
module.exports = {devServer: {host: 'localhost',port: '8081', // 端口号https: false, // https: {type:Bollean}open: true, // 配置自动启动浏览器// 配置代理proxy: {"/api": {target: 'http://www.baidu.com', // 想要访问接口域名c
·
module.exports = {
devServer: {
host: 'localhost',
port: '8081', // 端口号
https: false, // https: {type:Bollean}
open: true, // 配置自动启动浏览器
// 配置代理
proxy: {
"/api": {
target: 'http://www.baidu.com', // 想要访问接口域名
changeOrigin: true, // 开启跨域,在本地创建一个虚拟服务,然后发送请求的数据,并同时接收请求的数据,这样服务端和服务端进行数据交互就不会有问题
pathRewrite: {
"^/api": '', // 利用这个地面的值拼接上target里面的地址
}
}
}
}
}
更多推荐
已为社区贡献5条内容
所有评论(0)