方法說明:
向請求的客戶端發送回應頭。
函數在一個請求內最多只能調用一次,如果不調用,則會自動產生一個回應頭。
文法:
response.writeHead(statusCode, [reasonPhrase], [headers])
接收參數:
statusCode HTTP狀態碼,如200(請求成功),404(未找到)等。
reasonPhrase
headers 對每個關聯陣列中的一個物件,表示每個反應器的屬性
範例:
var body = 'hello world';
response.writeHead(200, {
'Content-Length': body.length,
'Content-Type': 'text/plain'
});