方法說明:
向請求的客戶端發送回應內容。
在 response.end() 之前,response.write() 可以執行多次。
文法:
response.write(chunk, [encoding])
參數:
chunk 為buffer 或 字串,表示已傳送的內容物
encoding 如果chunk是字串,且需要指定encoding來說明它的編碼方式,預設為utf-8
範例:
var http = require('http');
http.createServer(function(req, res){
res.writeHead(200, {'Content-type' : 'text/html'});
res.write('
Node.js
');
res.end('
Hello World
');
}).listen(3000);