FormData: has() メソッド
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
構文
js
has(name)
引数
name
-
検査を行うキーの名前を表す文字列です。
返値
FormData
に name
と一致するキーがあれば true
です。そうでなければ false
です。
例
以下のスニペットは、FormData
オブジェクトの username
の値を append()
で追加する前と後で username
が存在するかどうかテストした結果を示します。
js
formData.has("username"); // false を返す
formData.append("username", "Chris");
formData.has("username"); // true を返す
仕様書
Specification |
---|
XMLHttpRequest Standard # dom-formdata-has |
ブラウザーの互換性
BCD tables only load in the browser