Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们可以使用以下响应代码:
res.status(v);
但是稍后对于相同的请求,我们如何检查它是否已设置?我正在查看 Express 文档,但没有看到如何执行以下操作:
res.getStatus() // => 500
res.statusCode就是答案,这是 Node.js 的核心,它不是 Express 独有的。
res.statusCode
根据 Aikon Mogwai,您可以使用res.statusCode.
我试过了,它有效!(在快递 4.16 中)