,当呈现特定组件时,我的应用程序对不同API URL的请求具有多个请求。 由于我使用的是多个URL,因此我面临CORS问题,因此为了避免安装了http-proxy-middleware软件包。 在setupProxy.js中,我使用了以下代码。这不起作用 注意:我的项目中具有相同的终结点,但具有不同的api URL。如何处理这种情况
app.use(proxy(“ / rest / V1 / orders”,{target:“ https://example.com/”,changeOrigin:true})); app.use(proxy(“ / rest / V1 / orders ,, {target:” https://example.net/“,changeOrigin:true})); app.use(proxy(“ / rest / V1 / orders”,{target:“ https://example.org/”,changeOrigin:true}));