我是 express.js
的初学者,我想了解 res.send
和 res.write
之间的区别?
最佳答案
res.send
res.send
仅在 Express.js 中。 Content-Length
HTTP 响应 header 字段。 res.send
只能调用一次,因为它等价于 res.write
+ res.end()
0x291911224233app.get('/user/:id', function (req, res) {
res.send('OK');
});
更多细节:
res.write
response.write('<html>');
response.write('<body>');
response.write('<h1>Hello, World!</h1>');
response.write('</body>');
response.write('</html>');
response.end();
更多细节:
关于node.js - express 中 res.send 和 res.write 有什么区别?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44692048/