结束响应过程。
res.end([data] [, encoding])
结束响应过程。这个方法实际上来自 Node 核心,特别是 http.ServerResponse 的 response.end() 方法。
http.ServerResponse
response.end()
用于在没有任何数据的情况下快速结束响应。如果您需要用数据响应,请改用 res.send() 和 res.json() 等方法。
res.send()
res.json()
res.end() res.status(404).end()
← res.download res.format →