Movatterモバイル変換


[0]ホーム

URL:


  1. 개발자를 위한 웹 기술
  2. HTTP
  3. Reference
  4. HTTP 헤더
  5. Accept

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

Accept

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015년 7월⁩.

Accept 요청 HTTP 헤더는MIME 타입으로 표현되는, 클라이언트가 이해 가능한 컨텐츠 타입이 무엇인지를 알려줍니다.컨텐츠 협상을 이용해, 서버는 제안 중 하나를 선택하고 사용하며Content-Type 응답 헤더로 클라이언트에게 선택된 타입을 알려줍니다. 브라우저는 요청이 이루어진 컨텍스트에 따라 해당 헤더에 대해 적당한 값들을 설정합니다: CSS 스타일시트를 불러오게 되면, 이미지, 비디오 혹은 스크립트를 불러올 때와 다른 값이 요청에 대해 설정됩니다.

Header typeRequest header
Forbidden header nameno

문법

Accept: <MIME_type>/<MIME_subtype>Accept: <MIME_type>/*Accept: */*// Multiple types, weighted with thequality value syntax:Accept: text/html, application/xhtml+xml, application/xml;q=0.9, */*;q=0.8

디렉티브

<MIME_type>/<MIME_subtype>

text/html와 같이 단일의 간격한MIME 타입.

<MIME_type>/*

서버 타입을 갖지 않는 MIME 타입.image/*image/png,image/svg,image/gif 그리고 어떤 다른 이미지 타입들과도 일치하게 됩니다.

*/*

모든 MIME 타입

;q= (q-인자 가중치)

사용되는 모든 값들은weight라고 부르는 상대적인품질 값을 사용하여 표현되는 선호 순서로 대체됩니다.

예제

Accept: text/htmlAccept: image/*Accept: text/html, application/xhtml+xml, application/xml;q=0.9, */*;q=0.8

명세

Specification
HTTP Semantics
# field.accept

브라우저 호환성

함께 참고할 내용

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp