此方法适用于
服务器配置: Allow-Control-Allow-Origin: *
客户端配置:['Content-Type'] = 'application/x-www-form-urlencoded';
1:根目录/config/index.js
proxyTable: {
'/api': {
target: 'https://api.map.baidu.com',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
2:引用 - (注意前缀(’/api/‘))
axios.get(`/api/geocoder/v2/callback=?`).then((response)=>{
var res = response.data;
console.log(res);
})
网友评论