发布时间:2022-08-19 11:28
1、打开config下面的index.js,找到proxyTable,添加以下代码即可:
'/apis': {
target: 'http://localhost', // 接口域名
changeOrigin: true, //是否跨域
pathRewrite: {
'^/apis': '' //这里会把path路径的【/apis】替换成空,
}
}
2、配置完之后需要重启下项目 npm run dev。重启之后,就可以调用,实现跨域了
3、
export default {
name: 'Header',
data(){
return {
}
},
created:function(){
this.$http.get('/apis'+'你的api地址').then(function(response) {
return response.json();
}).then(function(data) {
console.dir(data);//得到的数据
}).catch(function(e) {
console.dir(e);
});
}
}
4、为了方便打包后去除'/api',建议把'/api'设成全局,在main.js中添加
Vue.prototype.api = process.env.NODE_ENV === 'production' ? '' : '/apis'
调用接口的时候的url就可以写成api + '接口地址'
Go1.19 那些事:国产芯片、内存模型等新特性,你知道多少?
[Golang]力扣Leetcode—中级算法—其他—两整数之和(位运算)
动作识别阅读笔记(一)《Two-Stream Convolutional Networks for Action Recognition in Videos》
python plt图片保存emf类型_matplotlib---保存图片出现的问题
计算机类论文摘要英文,求论文摘要的英文翻译,谢谢本文以计算机五子棋博弈系统作为课题,按照人工智能和计算机博弈的一般原理设计了一个五子棋博弈系统的基本模型,实现了基于博弈树分析的人机博弈.并且对五...