응답헤더 추출

q6hillz·2022년 4월 17일
0

javascript

목록 보기
14/60

응답 헤더는 response.headers에 맵과 유사한 형태로 저장된다.

맵은 아니지만 맵과 유사한 메서드를 지원한다. 이 메서드들을 사용하면 헤더 일부만 추출하거나 헤더 전체를 순회할 수 있다.

let response = await fetch('https://api.github.com/repos/javascript-tutorial/en.javascript.info/commits');

// 헤더 일부를 추출
alert(response.headers.get('Content-Type')); // application/json; charset=utf-8

// 헤더 전체를 순회
for (let [key, value] of response.headers) {
  alert(`${key} = ${value}`);
}

0개의 댓글