2

我使用 http-proxy-middle 代理我的 api 域以绕过 CORS 问题。我的代码在本地主机中工作,但是当它不在我的实时域中工作时。

我的代码是:

const proxy = require('http-proxy-middleware');
  app.use(
    '/api',
    proxy({
      target: ' mylivedomain.com',
      pathRewrite: {
        '^/api': '/',
      },
      changeOrigin: true,
      logLevel: 'debug',
      secure: false,
    }),
  );

我检查了网络选项卡,在尝试 GET 或 POST 方法时,我得到了一个状态码:302。有谁知道如何解决它?

4

0 回答 0