vue.config.js文件里module.exports = {devServer: {proxy: {//配置跨域/api: {target: http://localhost:18080/, //这里后台的地址模拟的;应该填写你们真实的后台接口changOrigin: true, //允许跨域pathRewrit...
vue.config.js文件里
module.exports = {
devServer: {
proxy: {
//配置跨域
"/api": {
target: "http://localhost:18080/", //这里后台的地址模拟的;应该填写你们真实的后台接口
changOrigin: true, //允许跨域
pathRewrite: {
/**
*重写路径,当我们在浏览器中看到请求的地址为:http://localhost:8888/api/...... 时
*实际上访问的地址是:http://localhost:18080/......,因为重写了 /api
*/
"^/api": "",
},
},
},
},
};
附vue.config.js
沃梦达教程
本文标题为:vue解决跨域问题
猜你喜欢
- 1 Vue - 简介 2023-10-08
- JS实现左侧菜单工具栏 2022-08-31
- jsPlumb+vue创建字段映射关系 2023-10-08
- layui数据表格以及传数据方式 2022-12-13
- 深入浅析AjaxFileUpload实现单个文件的 Ajax 文件上传库 2022-12-15
- javascript 判断当前浏览器版本并判断ie版本 2023-08-08
- 关于 html:如何从 css 表中删除边距和填充 2022-09-21
- vue keep-alive 2023-10-08
- ajax实现输入提示效果 2023-02-14
- 基于CORS实现WebApi Ajax 跨域请求解决方法 2023-02-14