我使用http-proxy-middle代理我的api域,以绕过CORS问题。我的代码在localhost中工作,但是在我的实时域中不工作。
我的代码是:
const proxy = require('http-proxy-middleware');
app.use(
'/api',
proxy({
target: ' mylivedomain.com',
pathRewrite: {
'^/api': '/',
},
changeOrigin: true,
logLevel: 'debug',
secure: false,
}),
);
我在“网络”选项卡中签到,在尝试GET或POST方法时收到状态代码:302。有谁知道如何解决它?