如何实现线上环境使用setting.host + '/api/sop/',本地dev请求localhost:3000呢?
const instance = axios.create({
baseURL: setting.host + '/api/sop/',
timeout: 20000,
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json',
},
});
config
proxyTable: {
'/api': {
target: "http://127.0.0.1:3000",
changeOrigin: true,
pathRewrite: {
'^/api': ""
}
}
},
用的vue-resource,理论上思路是一样的。
proxyTable
和nginx
的反向代理是一样的道理,拦截特定的url
,转发到其他服务器。可以配置一个环境变量,通过判断环境变量确定使用哪一种配置
设置后, npn run dev阶段, 本地如果访问'/get/apple, 本地服务器会帮你访问http://api.com:6688/get/apple拿到远程的数据, 变相的实现了跨域功能
打开config/index.js, 添加proxyTable属性
module.exports = {
}
https://github.com/383514580/...