Reflect.get()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2016.
静的な Reflect.get()
メソッドは、オブジェクト (target[propertyKey]
) からプロパティを関数として取得するように動作します。
試してみましょう
構文
js
Reflect.get(target, propertyKey[, receiver])
引数
target
-
プロパティを取得する対象のオブジェクト。
propertyKey
-
設定するプロパティ名。
receiver
省略可-
ゲッターがあった場合、
target
への呼び出しで使用するthis
の値を提供します。Proxy
とともに使用すると、target
から継承しているオブジェクトにすることができます。
返値
プロパティの値です。
例外
解説
Reflect.get
メソッドはオブジェクトのプロパティを取得します。機能としてはプロパティアクセサー構文と似ています。
例
Reflect.get()
の使用
js
// オブジェクト
let obj = { x: 1, y: 2 };
Reflect.get(obj, "x"); // 1
// 配列
Reflect.get(["zero", "one"], 1); // "one"
// Proxy with a get handler
let x = { p: 1 };
let obj = new Proxy(x, {
get(t, k, r) {
return k + "bar";
},
});
Reflect.get(obj, "foo"); // "foobar"
//Proxy with get handler and receiver
let x = { p: 1, foo: 2 };
let y = { foo: 3 };
let obj = new Proxy(x, {
get(t, prop, receiver) {
return receiver[prop] + "bar";
},
});
Reflect.get(obj, "foo", y); // "3bar"
仕様書
Specification |
---|
ECMAScript Language Specification # sec-reflect.get |
ブラウザーの互換性
BCD tables only load in the browser