美文网首页
vue 请求服务器出现跨域

vue 请求服务器出现跨域

作者: 微笑中的你 | 来源:发表于2021-01-14 15:33 被阅读0次

    环境vue2.x

    在项目目录下 创建 vue.config.js文件,必须是这个名称

    module.exports = {
      devServer: {
        proxy: {
          '/api': {
            target: '你自己的服务器路径',
            ws: true,
            changeOrigin: true,
            pathRewrite: {'^/api':''},
          },
        }
      }
    }
    

    相关文章

      网友评论

          本文标题:vue 请求服务器出现跨域

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