Headers.entries()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2017.
Headers.entries()
メソッドは、このオブジェクトに含まれるすべてのキーと値のペアを走査するイテレーターを返します。それぞれのペアのキーと値は両方とも String
オブジェクトです。
メモ: このメソッドはウェブワーカーで使用できます。
構文
js
entries()
引数
なし。
返値
イテレーターを返します。
例
js
// Headers テストオブジェクトを作成
const myHeaders = new Headers();
myHeaders.append("Content-Type", "text/xml");
myHeaders.append("Vary", "Accept-Language");
// キーと値のペアを表示
for (const pair of myHeaders.entries()) {
console.log(`${pair[0]}: ${pair[1]}`);
}
結果は次の通りです。
content-type: text/xml vary: Accept-Language
ブラウザーの互換性
BCD tables only load in the browser