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

2019-12-10  本文已影响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

上一篇下一篇

猜你喜欢

热点阅读