vue proxyTable 接口跨域请求调试的示例
内容摘要
这篇文章主要为大家详细介绍了vue proxyTable 接口跨域请求调试的示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!
在不同域之间访问
对此感兴趣的朋友,看看idc笔记做的技术笔记!
在不同域之间访问
文章正文
这篇文章主要为大家详细介绍了vue proxyTable 接口跨域请求调试的示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!
在不同域之间访问是比较常见,在本地调试访问远程服务器。。。。这就是有域问题。
VUE解决通过proxyTable:
在 config/index.js 配置文件中
代码如下:
dev: {
env: require('./dev.env'),
port: 8080,
autoOpenBrowser: true,
assetsSubDirectory: 'static',
assetsPublicPath: '/',
//proxyTable: {},
proxyTable: proxyConfig.proxyList,
// CSS Sourcemaps off by default because relative paths are "buggy"
// with this option, according to the CSS-Loader README
// (https://github.com/webpack/css-loader#sourcemaps)
// In our experience, they generally work as expected,
// just be aware of this issue when enabling this option.
cssSourceMap: false
}
划红线部分就是设置代理参数:
在config目录创建,proxyConfig.js 写入
代码如下:
module.exports = {
proxyList: {
'/apis': {
// 测试环境
target: 'https://goods.footer.com', // 接口域名
changeOrigin: true, //是否跨域
pathRewrite: {
'^/apis': '' //需要rewrite重写的,
}
}
}
}
在 config/index.js 配置文件上边引入
代码如下:
var proxyConfig = require('./proxyConfig')
【512pic.com温馨提示:图片暂缺】
使用:
服务器提供接口:https://goods.footer.com/health/list
Vue请求
代码如下:
var obj = {
pageSize: 20
}
this.$http.get( '/apis/health/list',{params: obj})
.then(function(res){
// 成功回调
},function(){
alert("error")
})
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持php教程。
注:关于vue proxyTable 接口跨域请求调试的示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释