使用Express发送响应
如何使用Express向客户端发送响应
在”Hello World”示例中,我们使用Response.send()
方法发送一个简单的字符串作为响应,并关闭连接:
1 | (req, res) => res.send('Hello World!') |
如果传入的是字符串,它会将Content-Type
头设置为text/html
。
如果传入的是对象或数组,它会将Content-Type
头设置为application/json
,并将该参数解析为JSON。
send()
会自动设置Content-Length
HTTP响应头。
send()
还会自动关闭连接。
使用end()发送空响应
发送没有任何内容的响应的另一种方法是使用Response.end()
方法:
1 | res.end() |
设置HTTP响应状态
使用Response.status()
:
1 | res.status(404).end() |
或者
1 | res.status(404).send('File not found') |
sendStatus()
是一个快捷方式:
1 | res.sendStatus(200) |
tags: [“Express”, “HTTP response”, “send”, “end”, “status”]