一、技术概述
二、技术详述
使用http-proxy-middleware 代理解决(项目使用vue-cli脚手架搭建)
打开config/index.js,在proxyTable中添写如下代码:
'/api': {
target:'http://129.204.247.165/',
changeOrigin:true,
pathRewrite:{
'^/api': ''
}
}
},
main.js里面加入:
import axios from 'axios'
Vue.prototype.$axios = axios
使用axios:
method: 'post',
url: '/api/posts/gethotbystatus',
data:qs.stringify({
day:20,
status:0
}),
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
}).then(function (res) {}
三、遇到的问题和解决过程。
主要问题就是不用vue-cli脚手架只单单导入vue.js包不能解决跨域.所以解决的过程就是安装vue-cli脚手架
四、总结
五、参考文献