반응형
Node.js/모듈
-
[ NodeJS / http ] response.writeHead()Node.js/모듈 2023. 3. 18. 10:32
writeHead는 http response의 header를 설정하기 위한 http 모듈의 메서드이며 두 개의 인자를 받습니다. response.writeHead(statusCode, headers) statusCode : http response의 상태코드를 특정합니다. 서버로부터 성공적인 응답을 받은경우 200을 할당하고, Not found 오류의 경우 404를 할당합니다. headers : http response header를 나타내는 key-value 쌍이 담긴 객체입니다. 인자를 전달하지 않을 경우 기본값으로 설정됩니다. writeHead 예시 res.writeHead(200, { 'Content-Type': 'text/html', 'Cache-Control': 'no-cache' }); he..