vue跨域解决方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue跨域解决方法相关的知识,希望对你有一定的参考价值。

参考技术A vue跨域解决方法
使用axios请求
第一步骤
在vue.config.js 文件中 module.exports = 中添加
devServer:
proxy:
'/profile': //指定 路径 要 跨域请求地址
// 在本地会创建一个虚拟服务端,然后发送请求的数据,并同时接收请求的数据,这样服务端和服务端进行数据的交互就不会有跨域问题
// 将/api开头的url转发到target上。
target: ' https://sso.www.eee.cn/profile',// 跨域请求地址
changeOrigin: true, //虚拟的站点需要更管origin
ws: true, // 代理websockets
secure: true, // 如果是https接口,需要配置这个参数
pathRewrite:
// 顾名思义,将/api重写为 / 此时url变为 http://192.168.101.110:8888/ 而不是 http://192.168.101.110:8888/api
'^/profile': ''





第二步骤
在封装axios请求中设置
const service = axios.create(
baseURL: '/profile',//定义要跨域的接口路径
withCredentials: true,//是否支持跨域
timeout: 500000, // request timeout
headers:
'Cache-Control': 'no-cache',
'Content-Type': 'application/x-www-form-urlencoded'


);

以上是关于vue跨域解决方法的主要内容,如果未能解决你的问题,请参考以下文章

vue跨域解决方法

vue解决跨域方法

vue跨域解决方法 及设置api路径方法

Vue配置代理 解决跨域

vue项目中常用解决跨域的方法

vue 处理跨域问题及解决方法小结