我正在构建一个 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 周了,任何想法或解决方案都会对我有很大帮助。如果我需要提供更多详细信息,请告诉我。