vue项目config/index.js中proxyTable用法
2021-05-02 20:28
标签:项目 UNC post fun exports mod this 浏览器 table 在配置文件config/index.js找到 更改为: 例如:请求地址为:"http://218.78.187.216/api/v1/authentication" 在浏览器中看到的访问地址: 其实真正访问的地址是: http://www.liulongbin.top:3005/api/getlunbo 转自:https://blog.csdn.net/XuMiao_/article/details/88653606 https://blog.csdn.net/qq_36111804/article/details/82878158 vue项目config/index.js中proxyTable用法 标签:项目 UNC post fun exports mod this 浏览器 table 原文地址:https://www.cnblogs.com/sylys/p/12127188.html目的:在配置文件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‘
}
}
}
请求的时候可以写为: this.$axios.post("/api/anthentication",params).then(res=>{
console.log(res);
},err=>{
console.log(err);
})
proxyTable: {
"/api": {
target: "http://www.liulongbin.top:3005/api", //设置调用的接口域名和端口
changeOrigin: true, //是否跨域
pathRewrite: {
"^/api": "" //用‘/api‘ 代替 ‘http://www.liulongbin.top:3005/api‘
}
}
},
getlunbo() {
let _this = this;
_this.$axios.get(‘/api/getlunbo‘).then(function(result){
console.log(result)
})
}
文章标题:vue项目config/index.js中proxyTable用法
文章链接:http://soscw.com/index.php/essay/81486.html