当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Reflect.get()用法及代码示例


静态 Reflect.get() 方法用于从对象中作为函数检索属性。第一个参数是对象,第二个参数是属性名称。

用法:

Reflect.get(target, propertyKey[, receiver])

参数:

target:它是获取属性的目标对象。

propertyKey: 就是要获取的key的名字。

receiver: 如果遇到 getter,它是为对象调用提供的 this 值。

返回值:

它返回属性的值。

异常:

如果目标不是对象,则为 TypeError。

浏览器支持:

Chrome 49
Edge 12
Firefox 42
Opera 36

例子1

const u = {p:3};
console.log( Reflect.get ( u , "p" ) === 3 );
// if property key is not found, return undefined just like obj.key
console.log( Reflect.get ( u , "h" ) === undefined ); 
console.log( Reflect.get ( u , "h" ) === 3 );

输出:

true

true

false

例子2

const x = {p:3};
const y = Object.create (x);
// x is parent of y
console.log (
    Reflect.get ( y, "p" ) === 3
  // Reflect.get will traverse the prototype chain to find property
);

输出:

true

例子3

const object1 = {
  x:1,
  y:2
};
console.log(Reflect.get(object1, 'y'));
// expected output:1
var array1 = ['zero', 'one','Carry','marry','charry'];
console.log(Reflect.get(array1, 4));

输出:

 2
 "charry"




相关用法


注:本文由纯净天空筛选整理自 JavaScript Reflect.get() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。