Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

Headers: get() method

BaselineWidely available

Note: This feature is available inWeb Workers.

Theget() method of theHeaders interfacereturns a byte string of all the values of a header within aHeaders objectwith a given name. If the requested header doesn't exist in theHeadersobject, it returnsnull.

For security reasons, some headers can only be controlled by the user agent. Theseheaders include theforbidden request headersandforbidden response header names.

Syntax

js
get(name)

Parameters

name

The name of the HTTP header whose values you want to retrieve from theHeaders object. If the given name is not the name of an HTTP header, thismethod throws aTypeError. The name is case-insensitive.

Return value

AString sequence representing the values of the retrieved header ornull if this header is not set.

Examples

Creating an emptyHeaders object is simple:

js
const myHeaders = new Headers(); // Currently emptymyHeaders.get("Not-Set"); // Returns null

You could add a header to this usingHeaders.append, then retrieve itusingget():

js
myHeaders.append("Content-Type", "image/jpeg");myHeaders.get("Content-Type"); // Returns "image/jpeg"

If the header has multiple values associated with it, the byte string will contain allthe values, in the order they were added to the Headers object:

js
myHeaders.append("Accept-Encoding", "deflate");myHeaders.append("Accept-Encoding", "gzip");myHeaders.get("Accept-Encoding"); // Returns "deflate, gzip"myHeaders  .get("Accept-Encoding")  .split(",")  .map((v) => v.trimStart()); // Returns [ "deflate", "gzip" ]

Specifications

Specification
Fetch
# ref-for-dom-headers-get①

Browser compatibility

See also

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp