使用 vue-cli-3.0 版本创建的项目解决跨域请求数据
在项目根目录中的vue.config.js(如没有,需要自己手动创建)中配置节点如下
module.exports = {
// 开发服务器配置节点
devServer:
{
open:true,
host: 'localhost',
port: 8081,
https: false,
hotOnly: false,
proxy: { // 配置跨域
'/api': {
// 调用接口的域名呵端口号
target: 'http://localhost:5001/api/',
ws: true,
changOrigin: true, // 这里true表示实现跨域
pathRewrite: {
'^/api': '' // 这里理解成用 '/api'代替 target里面的地址,后面组件中我们调接口时直接用api代替 比如要要调用 ’https://xxxxx.down.cn.user/add' 直接写成'/api/user/add'即可
}
}
}
}