如何配置vue.config.js的proxy?

一些接口要代理到地址1
一些接口要代理到地址2

我配置了vue.config.js:

devServer: {
    proxy: {
      "/": {
        target: "https://www.ylcx.online:442",
        secure: true
      },
      "/proxy2": {
        target: "https://www.ylcx.online:441",
        secure: true
      },
    }
  }

请求的地址我写的是:
url: "proxy2/company/getCompanyList",

期望请求的实际地址是:
https://new.ylcx.online:441/company/getCompanyList

为什么这样对应不上接口?

阅读 5.4k
2 个回答
"/proxy2": {
        target: "https://www.ylcx.online:441",
        secure: true,
        changeOrigin: true,
        pathRewrite: {'^/proxy2' : ''}
      },

"/proxy2": {

target: "https://www.ylcx.online:441",
ws: true,
changeOrigin: true,
pathRewrite: {
    "^/proxy2": "/"
}

},

试试这样呢 然后把上面那个 / 的代理给去掉 你设置的名字最好不要和地址栏里面有重复

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题