溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么使用vue項(xiàng)目配置多個(gè)代理

發(fā)布時(shí)間:2022-04-26 19:32:42 來源:億速云 閱讀:728 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要介紹“怎么使用vue項(xiàng)目配置多個(gè)代理”,在日常操作中,相信很多人在怎么使用vue項(xiàng)目配置多個(gè)代理問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”怎么使用vue項(xiàng)目配置多個(gè)代理”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

在Vue項(xiàng)目的開發(fā)過程中,為了本地調(diào)試方便,我們通常會(huì)在 vue.config.js 中配置 devServer 來在本地啟動(dòng)一個(gè)服務(wù)器,在這個(gè)選項(xiàng)中,我們會(huì)配置proxy 屬性來將指向到本地的請(qǐng)求(例如: /api/action) 代理到后端的開發(fā)服務(wù)器上(例如: http://xxx.xxx.xxx/api/action)

devServer: {
        port: 8081,
        proxy: {
            '/api/action': {
                target: 'http://192.168.200.106:81',
                changeOrigin: true,
                ws: true,
                secure: false
            }
        }
    },
```

在這個(gè)配置中,要注意以下兩點(diǎn):

接口地址有重疊地址時(shí),將匹配度低的放在后面。

例如:

  1. * 將 / 匹配到 192.191.1.1;

  2. * 將 /api 匹配到 192.191.1.2

  3. * 將 /api/action 匹配到 192.191.1.3

如果我們像下面一樣書寫:

proxy: {
            '/': {
                target: 'http://192.191.1.1',
                changeOrigin: true,
                ws: true,
                secure: false
            },
    '/api': {
                target: 'http://192.191.1.2',
                changeOrigin: true,
                ws: true,
                secure: false
            },
    '/api/action': {
                target: 'http://192.191.1.3',
                changeOrigin: true,
                ws: true,
                secure: false
            }
        }

那么所有到/, /api和 /api/action 的請(qǐng)求將全部被代理到 192.191.1.1 上面去

原因是這里的匹配實(shí)際上是一個(gè)正則匹配的過程,當(dāng)我們請(qǐng)求 /api 時(shí),首先讀取到了配置項(xiàng)中的第一個(gè),拿配置中的 / 去匹配請(qǐng)求中的 /api , 發(fā)現(xiàn)請(qǐng)求的/api 中包含配置項(xiàng)/, 匹配成功,直接將請(qǐng)求代理到了 192.191.1.1 上面去, 對(duì)/api/action的匹配也同理。

也就是說,它的匹配規(guī)則是: 拿配置項(xiàng)中的地址去匹配請(qǐng)求中的地址,如果請(qǐng)求中的地址中包含配置中的地址,則匹配成功,否則,拿下一個(gè)配置項(xiàng)繼續(xù)匹配。

所以,配置中的地址與請(qǐng)求地址中匹配的字符越少,匹配度越低。 上例中配置中的地址(/)與請(qǐng)求地址(/api)只有一個(gè)字符是匹配的,所以匹配度低。

所以我們正確的寫法應(yīng)該是:

proxy: {
            '/api/action': {
                target: 'http://192.191.1.3',
                changeOrigin: true,
                ws: true,
                secure: false
            },
    '/api': {
                target: 'http://192.191.1.2',
                changeOrigin: true,
                ws: true,
                secure: false
            },
    '/': {
                target: 'http://192.191.1.1',
                changeOrigin: true,
                ws: true,
                secure: false
            }
        }

這樣到三個(gè)地址的請(qǐng)求就都可以正確代理到相應(yīng)的地址去了

多個(gè)地址代理同一個(gè)target 時(shí),可進(jìn)行合并

在實(shí)際應(yīng)用中,由于后端采用微服務(wù)模式開發(fā),在開發(fā)階段,我們可能會(huì)將不同的服務(wù)代理到不同的地址上,當(dāng)服務(wù)很多時(shí),我們代理的數(shù)量也就很多:

proxy: {
  		'/api/action': {
                target: 'http://192.191.1.3',
                changeOrigin: true,
                ws: true,
                secure: false
            },
              '/api/action2': {
                target: 'http://192.191.1.4',
                changeOrigin: true,
                ws: true,
                secure: false
            },
              '/api/action3': {
                target: 'http://192.191.1.3',
                changeOrigin: true,
                ws: true,
                secure: false
            },
              '/api/action4': {
                target: 'http://192.191.1.4',
                changeOrigin: true,
                ws: true,
                secure: false
            },
              '/api/action5': {
                target: 'http://192.191.1.5',
                changeOrigin: true,
                ws: true,
                secure: false
            },
              '/api/action6': {
                target: 'http://192.191.1.6',
                changeOrigin: true,
                ws: true,
                secure: false
            },
              '/api/action7': {
                target: 'http://192.191.1.5',
                changeOrigin: true,
                ws: true,
                secure: false
            },
              '/api/action8': {
                target: 'http://192.191.1.6',
                changeOrigin: true,
                ws: true,
                secure: false
            },
              '/api/action9': {
                target: 'http://192.191.1.7',
                changeOrigin: true,
                ws: true,
                secure: false
            },
			 '/api': {
                target: 'http://192.191.1.2',
                changeOrigin: true,
                ws: true,
                secure: false
            },
			 '/': {
                target: 'http://192.191.1.1',
                changeOrigin: true,
                ws: true,
                secure: false
            },              
        }

當(dāng)配置的代理數(shù)量超過十個(gè)時(shí),開發(fā)環(huán)境編譯打包時(shí)會(huì)報(bào)以下錯(cuò)誤:

怎么使用vue項(xiàng)目配置多個(gè)代理

為了解決報(bào)錯(cuò),也同時(shí)減少代碼體積,我們可以對(duì)具有同一個(gè)target的配置項(xiàng)進(jìn)行合并,由上文我們可知,這里其實(shí)是一個(gè)正則匹配的過程,那我們就可以利用正則語法將他們進(jìn)行合并:

proxy: {
  		'/api/action|/api/action3': {
                target: 'http://192.191.1.3',
                changeOrigin: true,
                ws: true,
                secure: false
            },
              '/api/action2|/api/action4'': {
                target: 'http://192.191.1.4',
                changeOrigin: true,
                ws: true,
                secure: false
            },
             
              '/api/action5|/api/action7': {
                target: 'http://192.191.1.5',
                changeOrigin: true,
                ws: true,
                secure: false
            },
              '/api/action6|/api/action8': {
                target: 'http://192.191.1.6',
                changeOrigin: true,
                ws: true,
                secure: false
            },
              '/api/action9': {
                target: 'http://192.191.1.7',
                changeOrigin: true,
                ws: true,
                secure: false
            },
			 '/api': {
                target: 'http://192.191.1.2',
                changeOrigin: true,
                ws: true,
                secure: false
            },
			 '/': {
                target: 'http://192.191.1.1',
                changeOrigin: true,
                ws: true,
                secure: false
            },              
        }

當(dāng)然,在正式部署的時(shí)候,還是需要后端去做統(tǒng)一代理。

到此,關(guān)于“怎么使用vue項(xiàng)目配置多個(gè)代理”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI