方法說明:
此棒法用來將HTTP trailing回應頭加入訊息尾部。
文法:
response.addTrailers(headers)
接收參數:
headers 回應頭資訊
範例:
response.writeHead(200, { 'Content-Type': 'text/plain', 'Trailer': 'Content-MD5' });
response.write(fileData);
response.addTrailers({'Content-MD5': "7895bf4b8828b55ceaf47747b4bca667"});
response.end();