📅  最后修改于: 2023-12-03 15:17:55.579000             🧑  作者: Mango
在Node.js中,response.write()方法用于向HTTP响应中写入数据,其中响应对象由HTTP模块的回调函数创建。
response.write(chunk, [encoding], [callback]);
参数说明:
const http = require('http');
const server = http.createServer((req, res) => {
res.write('Hello World!');
res.end();
});
server.listen(3000);
在以上示例中,当浏览器向服务器发送请求时,服务器通过回调函数向响应中写入字符串“Hello World!”。