Vue-Cli3中用配置代理实现跨域

在根目录下新建vue.config.js文件
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://api.zhuishushenqi.com',
//地址为:http://api.zhuishushenqi.com/cats/lv2/statistics
//axios引用时用/api代替target里的内容
//如:axios.get('/api/cats/lv2/statistics')
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
}
}

Vue-Cli3中用配置代理实现跨域最先出现在Python成神之路

版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/16523.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>