如果我在发送标题后遇到错误,我需要能够“终止”连接,以便向客户端发出错误信号。我如何做这个NodeJS / ExpressJS?
function (req, res, next) {
createStream()
.on('error', () => {
if (res.headersSent) {
/* KILL CONNECTION */
} else {
res.sendStatus(500)
}
})
.pipe(res)
}