美文网首页
vue-cli3中本地应用和后端接口跨域,导致axios无法携带

vue-cli3中本地应用和后端接口跨域,导致axios无法携带

作者: 不看盛景不叙深情 | 来源:发表于2019-12-10 10:32 被阅读0次

    axios中api请求以/api开头,不需要配置绝对路径,如http://....之类。
    在vue.config.js中配置如下:target改为你要请求的api地址

      devServer: {
        // development server port 8000
        port: 8000,
        // If you want to turn on the proxy, please remove the mockjs /src/main.jsL11
        proxy: {
          '/api': {
            target: 'http://172.16.1.110',
            ws: true,
            changeOrigin: true
          }
        }
      }
    

    参考链接:https://cli.vuejs.org/zh/config/#devserver

    相关文章

      网友评论

          本文标题:vue-cli3中本地应用和后端接口跨域,导致axios无法携带

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