在Node.js中,http.response.end()
方法用于結束響應,并向客戶端發送數據。它接受一個可選的參數用于指定要發送的數據。
下面是一個簡單的示例,展示了如何使用http.response.end()
方法:
const http = require('http');
// 創建一個HTTP服務器
const server = http.createServer((req, res) => {
// 設置響應頭
res.writeHead(200, {'Content-Type': 'text/plain'});
// 向客戶端發送數據
res.end('Hello, World!');
});
// 監聽端口
server.listen(3000, () => {
console.log('Server is running on http://localhost:3000');
});
在上面的示例中,當客戶端發送請求時,服務器會響應一個Hello, World!
的文本,并在發送完數據后調用res.end()
方法來結束響應。