我在rest-api调用中生成了一个巨大的.docx文档。它需要几分钟才能完成。问题是服务器以某种方式发送"超时"一分钟左右。反正有没有增加这个时间?它是浏览器还是可以在Express中更改?
exports.generateDoc = function(req, res){
var file = generateDoc(); //This takes several minutes
res.setHeader('Content-disposition', 'attachment; filename=output.docx');
res.end(file,'binary');
}