VUE——在配置文件config/index.js中配置统一请求接口
在配置文件config/index.js找到 module.exports={ dev:{ proxyTable:{} } }更改为: proxyTable:{ "/api": { target: "http://218.78.187.216/api/v1"
·
在配置文件config/index.js找到
module.exports={
dev:{
proxyTable:{}
}
}
更改为:
proxyTable:{
"/api": {
target: "http://218.78.187.216/api/v1", //设置调用的接口域名和端口
changeOrigin: true,
pathRewrite: {
"^/api": "" //用'/api' 代替 'http://218.78.187.216/api/v1'
}
}
}
例如:请求地址为:"http://218.78.187.216/api/v1/authentication"
请求的时候可以写为:
this.$axios.post("/api/anthentication",params).then(res=>{
console.log(res);
},err=>{
console.log(err);
})
更多推荐
已为社区贡献6条内容
所有评论(0)