由于在开发阶段去调用后台的接口时候,设计到跨域问题,所以我们要用proxyTable去处理,在config下面的index里面:
proxyTable: {
'/api': {
// http://10.109.0.145:8086/ 后台本地服务地址
// http:// xxxxxx.xxxxx.com/ 正式域名地址
//根据项目阶段去切换target地址即可
target: 'http://xxxxx.xxxxx.com/', //源地址
changeOrigin: true, //改变源
pathRewrite: {
'^/api': '' //路径重写npm
}
}
},
在getData.js里面使用root
var root = process.env.API_HOST
export const homeBanner = () => $http(root + '/information/loadingImg'); //通过root去自动识别项目所处的环境
网友评论