快递请求给出 ERR_EMPTY_RESPONSE

IT技术 node.js reactjs express http-post
2021-04-13 22:07:14

我正在构建一个 node.js 和 express.js Web 应用程序,当发布请求花费的时间超过 2 分钟时,它无法按预期工作。
发生的情况是,2 分钟后,我的express路线被重新调用,然后,又过了 2 分钟(总共 4 分钟),我在该发布请求的网络选项卡中收到此错误:

net::ERR_EMPTY_RESPONSE

我读到express默认超时设置为 2 分钟,但这仅适用于获取请求...

这是我的路线:

const router = express.Router();

router.post('/', authenticate, async (req, res) => {
  console.log('here');
  setTimeout(function() {
    res.status(201).json({success: true});   
  }, 400000);
})

here当我发出发布请求时,它会打印到控制台,然后here在 2 分钟后再次打印

这是我index来自服务器的文件:

const app = express();

app.use(bodyParser.json({limit: '50mb'}));
const compiler = webpack(webpackConfig);

app.use(webpackMiddleware(compiler, {
  hot: true,
  publicPath: webpackConfig.output.publicPath,
  noInfo: true
}));
app.use(webpackHotMiddleware(compiler));

app.get('/*', (req, res) => {
  res.sendFile(path.join(__dirname, './index.html'));
});

app.listen(3000, () => console.log('Running on localhost:3000'));
app.timeout = 700000;

自从我面临这个问题以来已经有 2 周了,任何想法或解决方案都会对我有很大帮助。如果我需要提供更多详细信息,请告诉我。

1个回答

我通过删除网络浏览器的超时来解决我的问题,如下所述:https : //github.com/expressjs/express/issues/2174