방법 설명:
이 방법은 메시지 끝에 HTTP 후행 응답 헤더를 추가하는 데 사용됩니다.
문법:
response.addTrailers(헤더)
수신 매개변수:
헤더 응답 헤더 정보
예:
response.writeHead(200, { 'Content-Type': 'text/plain', 'Trailer': 'Content-MD5' })
response.write(fileData);
response.addTrailers({'Content-MD5': "7895bf4b8828b55ceaf47747b4bca667"});
response.end();