美文网首页
Electron-vue解决跨域

Electron-vue解决跨域

作者: sweetylulu | 来源:发表于2021-09-09 13:52 被阅读0次
    方案一:

    在.electron-vue/dev-runner.js文件配置代理

    proxy:{
        "/live": {//接口
            target: " https://xx.xxx.com",   //需要跨域的目标url ,我这里是自己本地起的一个服务端口
            changeOrigin: true, //开启跨域
        },
        '/room': {//房间接口
            target: 'https://xx.xxx.com', // 
            changeOrigin: true, 
        }
    }
    
    代理配置
    方案二:

    服务端配置cros,前端不做任何处理

    相关文章

      网友评论

          本文标题:Electron-vue解决跨域

          本文链接:https://www.haomeiwen.com/subject/coviwltx.html