Vue3.0 axios跨域请求代理服务器配置
程序员文章站
2022-07-10 15:41:20
...
参考周家大小姐.https://blog.csdn.net/qq_40190624/article/details/85257610
首先安装axios
npm install axios
然后在vue.config.js文件下配置如下代码
(若没有vue.config.js文件可以自己创建这个文件)
module.exports = {
devServer: {
open: true,
port: 8001,
proxy: {
'/apis': {
target: 'http://localhost:8080/thinkphp/personal_blog/public/personal.php/personal/', // target host
ws: true, // proxy websockets
changeOrigin: true, // needed for virtual hosted sites
pathRewrite: {
'^/apis': '' // rewrite path
}
},
}
}
};
其中open表示是否运行时就启动app,port表示我们当前vue页面的端口比如下面我的页面端口是8001那么这里就写8001
然后proxy中的代码就是跨域代理服务器的配置代码
其中target就是目标api接口,比如你们接口为 http://localhost:8080/api/login 那么target就可以写http://localhost:8080/api/
然后在项目中实际用我们就可以这么写
axios.post('/apis/login', postData)
.then(response => {
// post 成功,response.data 为返回的数据
console.log(response.data)
})
.catch(error => {
// 请求失败
console.log(error)
})
那个apis就是http://localhost:8080/api/ 也就是我们在target中配置的api接口,"/apis/"就是 pathRewrite中配置的
然后就可以请求成功了,我这里的后台是以tp5框架做为后台
这里我使用的是vuecli3.0最新版的脚手架
目录结构如下
其中初始创建时没有vue.config.js的文件,这个为自己手动创建
注意 修改成功后一定要重新启动项目