Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

一些接口要代理到地址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

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...