标签: node.js express
我想从Express中间件向客户端返回错误:
try { await ... } catch (error) { res.statusMessage = error.message; res.status(error.statusCode); } finally { res.end(); }
关于开发环境的这项工作。但是在生产服务器上,来自客户的statusText是空的。状态码很好。
statusText
有人知道我在Express中间件(4.x)中出错吗?