深刻理解 ES6中的 Reflect

閱讀目錄html

Reflect對象是一個全局的普通的對象。Reflect的原型就是Object.數組

咱們首先來驗證下 看看Reflect的原型是不是Object, 基本代碼以下:app

let obj = {};
console.log(Reflect.__proto__ === Object.prototype); // true
console.log(obj.__proto__ === Reflect.__proto__); // true

let str = '111';

console.log(str.__proto__); // String {"", length: 0, constructor: ƒ, anchor: ƒ, big: ƒ, blink: ƒ, …}

Reflect是ES6爲了操做對象而新增的API, 爲何要添加Reflect對象呢?它這樣設計的目的是爲了什麼?函數

1)將Object對象的一些明顯屬於語言內部的方法(好比Object.defineProperty),放到Reflect對象上,那麼之後咱們就能夠從Reflect對象上能夠拿到語言內部的方法。測試

2)在使用對象的 Object.defineProperty(obj, name, {})時,若是出現異常的話,會拋出一個錯誤,須要使用try catch去捕獲,可是使用 Reflect.defineProperty(obj, name, desc) 則會返回false。this

好比 舊的寫法以下:es5

try {
  Object.defineProperty(target, property, attributes);
} catch(e) {
  // 失敗
}

// 新寫法
if (Reflect.defineProperty(target, property, attributes)) {
  // success
} else {
  // failure
}

等等這些考慮,因此就新增了這個靜態對象。spa

Reflect對象一共有13個靜態方法。prototype

一:Reflect.get(target, name, receiver)設計

該方法是用來讀取一個對象的屬性。
參數以下解析:
target: 目標對象
name: 是咱們要讀取的屬性。
receiver(可選): 能夠理解爲上下文this對象。

先看以下demo來理解下 Reflect中的get方法的使用以下:

const obj = {
  name: 'kongzhi',
  age: 30,
  get xxx() {
    console.log(this.name); 
    console.log('-------');
  }
};

console.log(Reflect.get(obj, 'name')); // kongzhi
 
console.log(Reflect.get(obj, 'yyy'));  // undefined

/* 
 先執行 xxx 方法 打印 kongzhi 和 ----, 
 而後在打印undefined, 由於該xxx()函數沒有返回值
*/
console.log(Reflect.get(obj, 'xxx')); 

/* 
 會執行 xxx() 方法,打印 happy, 所以第三個參數指向上下文
 就指向了這個對象,而後打印 ----- ,最後打印undefined
 由於該函數沒有返回值
*/
console.log(Reflect.get(obj, 'xxx', {name: 'happy'})); 

/*
 會執行 xxx() 方法,打印 undefined, 所以第三個參數指向上下文
 就指向了這個對象,而這個對象裏面又沒有name屬性,所以會打印undefined
 而後打印 ----- ,最後打印undefined. 由於該函數沒有返回值
*/
console.log(Reflect.get(obj, 'xxx', {age: 'happy'}));

const obj2 = {
  name: 'kongzhi2',
  age: 30,
  get xxx() {
    console.log(this.name); 
    console.log('----xxxx---');
    return 0;
  }
};
/*
  先執行 obj2 該對象中的 xxx 方法,指定了第三個參數做爲該上下文對象,
  所以會打印 happy2, 而後繼續打印 ----xxxx---, 最後咱們能夠看到
  有返回值爲0,所以打印0了 
*/
console.log(Reflect.get(obj2, 'xxx', {name: 'happy2'})); 

二:Reflect.set(target,name,value,receiver)

上面的get方法是獲取對象中的值,那麼set就是設置該對象的屬性值了,參數解析簡單以下:
target: 咱們須要操做的對象。
name: 咱們須要設置該對象的屬性名。
value: 咱們要設置的屬性值。
receiver: 能夠理解爲上下文this對象。若是咱們在設置值的時候遇到setter函數,該參數就指向與setter中上下文this對象。
該函數會返回一個Boolean的值,表明在目標對象上設置屬性是否成功。

以下代碼演示:

const obj = {
  age: 30,
  set name(name) {
    console.log(this); 
    console.log('-------');
  }
};

const res = Reflect.set(obj, 'age', 31);
console.log(res); // true
console.log(obj); // {age: 31, set name:function} 這樣的

console.log(obj.age); // 打印 31

/*
 以下代碼,設置 obj對象中的name屬性,所以打印 console.log(this)
 返回 {age: 31, set name:function} 這樣的, console.log(res2)返回true,設置成功
*/
const res2 = Reflect.set(obj, 'name', 'xxxx');
console.log(res2); // true

/*
 先執行 set 中的name方法,打印 console.log(this);this就指向了第四個參數 {test: 'test'}
 而後會打印 '-----'; 
*/
const r2 = Reflect.set(obj, 'name', 'dreamapple', {test: 'test'}); // this: -->  { test: 'test' }
console.log(r2); // true
console.log(obj); // { name: [Setter], age: 31 }

三:Reflect.apply(target,thisArg,args)

該方法的含義是:經過指定的參數列表對該目標函數的調用。該方法相似於咱們以前的 Function.prototype.apply 方法的。

參數解析以下:
target: 咱們的目標函數.
thisArg: target函數調用的時候綁定的this對象。
args: 就是函數參數列表。

以下代碼demo演示:

// 查找數組裏面最小的元素值

const arrs = [1, 2, 3, 4];
// ES6 的語法以下
const min = Reflect.apply(Math.min, arrs, arrs);

console.log(min); // 1

// ES5的語法以下:

const min2 = Math.min.apply(arrs, arrs);
console.log(min2); // 1

// 或者咱們使用 Finction.prototype 代碼以下演示

const min3 = Function.prototype.apply.call(Math.min, arrs, arrs);
console.log(min3); // 1

// 下面是截取字符串的方法演示下 

const strs = 'kongzhi';

// 使用ES6的語法 代碼演示以下:

const str1 = Reflect.apply(String.prototype.slice, strs, [0, 3]);
console.log(str1); // 打印 kon

// 使用 ES5的語法 
const str2 = strs.slice(0, 3);
console.log(str2); // 打印 kon

// 或者咱們使用 String.prototype 代碼以下演示
const str3 = String.prototype.slice.apply(strs, [0, 3]);
console.log(str3); // kon

四:Reflect.construct(target,args[, newTarget])

該方法的做用和 new AAA() 建立一個實列方法做用相似,那麼使用該方法,咱們就能夠提供一種不使用new來調用構造函數的方法,
參數含義以下:
target: 被運行的目標函數。
args: 調用構造函數傳遞的參數數組或僞數組。
newTarget: 也是構造函數,表示使用 Reflect.construct後生成的實列對象是誰的實列。若是沒有該參數,默認生成的實列對象就和target構造函數是同樣的。

代碼演示以下:

function XXXX(name) {
  this.name = name;
}

XXXX.prototype.getName = function() {
  return this.name;
}

function YYYY(age) {
  this.age = age;
}

YYYY.prototype.getAge = function() {
  return this.age || 31;
}

// 使用 XXXX函數做爲構造函數, 那麼構造函數就指向了 XXXX函數
const xxxx = Reflect.construct(XXXX, ['xx']);
console.log(xxxx);  // 打印 XXXX {name: xx}
console.log(xxxx.getName()); // 打印 xx

以下圖所示:

// 使用 YYYY 函數做爲構造函數,那麼構造函數就指向了 YYYY函數
const yyyy = Reflect.construct(XXXX, ['30'], YYYY);

console.log(yyyy); // 打印 YYYY {name: 30}
console.log(yyyy.name); // 30
console.log(yyyy.age); // undefined
console.log(yyyy instanceof YYYY); // true
console.log(yyyy instanceof XXXX);  // false
console.log(yyyy.getAge()); // 31

如上demo所示:當const xxxx = Reflect.construct(XXXX, ['xx']); 沒有第三個參數的時候,那麼構造函數指向了 XXXX 函數。
咱們繼續看第二個demo,const yyyy = Reflect.construct(XXXX, ['30'], YYYY); 有第三個參數,所以 yyyy的實列指向了 YYYY.
如上代碼打印的信息看到 console.log(yyyy instanceof YYYY); 返回true, console.log(yyyy instanceof XXXX); 返回false.
可是呢 console.log(yyyy.getAge()); 返回的是 31. 若是咱們沒有默認的 31值的話,那麼就應該返回undefined了,能夠看到,請看下面的注意總結:

注意:若是有第三個參數的話,那麼咱們的實列由兩部分組成,實列的屬性部分由第一部分構造函數生成。實列的方法由第三個參數對象生成。

好比上面打印的 console.log(yyyy); // 打印 YYYY {name: 30} 看到只返回了 XXXX中的name屬性,XXXX中的getName方法並無拿到。
同理如上 console.log(yyyy.age); 爲undefined, console.log(yyyy.getAge()); 返回了31.  以下圖所示:

五:Reflect.defineProperty(target,name,desc)

該方法與Object.defineProperty方法相似的,不過惟一的區別是 Reflect.defineProperty返回值是一個Boolean的值。
好比以下基本的代碼比較:

const obj = {};
// 使用 Object.defineProperty
try {
  Object.defineProperty(obj, 'a', {
    value: 22
  })
} catch(e) {
  console.log('define property failed');
}

// 使用 Reflect.defineProperty

const res = Reflect.defineProperty(obj, 'b', {
  configurable: true,
  enumerable: true
});

console.log(res); // true

既然二者的用法是同樣的,那配置項也是同樣的,那這邊就很少介紹了,只是返回值不同而已,那麼Object.defineProperty 的具體用法,
請看我上一篇文章(https://www.cnblogs.com/tugenhua0707/p/10261170.html)。

所以總結一下:若是使用Object.defineProperty的屬性定義失敗了,就會拋出一個錯誤,成功的話就會返回這個對象;
Reflect.defineProperty若是定義屬性失敗的話就會返回false,若是成功定義的話,就會返回true。
可是若是使用Reflect.defineProperty函數,它的第一個參數不是對象的話,也會拋出錯誤。

六:Reflect.deleteProperty(target,name)

該方法用於刪除一個對象上的屬性,它和delete操做符相似的。
參數以下:
target: 表示要操做的對象。
name: 表示要刪除該對象上的屬性。
該函數返回值是一個Boolean的值,若是成功的話,返回true,失敗的話返回false。好比以下demo演示:

const obj = {
  name: 'kongzhi',
  age: 30
};

let test1 = Reflect.deleteProperty(obj, 'name');
console.log(test1);  // true
console.log(obj); // {age: 30}

// 若是刪除對象上不存在的屬性的話,也是返回true的
let test2 = Reflect.deleteProperty(obj, 'xx');
console.log(test2); // true
console.log(obj); // {age: 30}

let test3 = Reflect.deleteProperty(obj, 'age');
console.log(test3); // true
console.log(obj); // {}

七:Reflect.has(target,name)

該方法的含義是:檢查一個對象上是否含有特定的屬性。至關於es5中的in操做符。
那麼參數 target: 就是改對象哦,name的含義是:該對象上的屬性。
具體的demo演示以下:

// 通常的對象

const obj = {
  name: 'kongzhi',
  age: 30
};

console.log(Reflect.has(obj, 'name')); // true
console.log(Reflect.has(obj, 'username')); // 該對象上沒有 username屬性  返回false
console.log(Reflect.has(obj, 'age')); // true

// 函數的實列

function Obj(name) {
  this.name = name;
}

Obj.prototype.getName = function() {
  return this.name;
}

const test = new Obj();

// 使用in操做符測試
console.log('name' in test); // true
console.log('getName' in test); // true

// 使用Reflect.has 測試
console.log(Reflect.has(test, 'name')); // true
console.log(Reflect.has(test, 'getName')); // true

八:Reflect.ownKeys(target)

該函數的做用是:返回由目標對象自身的屬性鍵組成的數組。若是這個目標對象不是一個對象的話,那麼該函數就會拋出一個異常。
target參數:它是一個對象。以下代碼演示:

const obj = {
  name: 'kongzhi',
  age: 30
};

console.log(Reflect.ownKeys(obj)); // ['name', 'age'];

九:Reflect.preventExtensions(target)

該方法的做用是 阻止新的屬性添加到對象中去。target參數必須是一個對象,不然的話會拋出一個異常。
以下代碼演示:

const obj = {};
// 判斷該對象是否能夠擴展,使用 Reflect.isExtensible 該方法
const t1 = Reflect.isExtensible(obj);
console.log(t1);  // true

// 使用 Reflect.preventExtensions 來阻止該對象擴展

Reflect.preventExtensions(obj);

// 再來擴展下該對象,看是否能夠
const t2 = Reflect.isExtensible(obj);

console.log(t2); // false

十:Reflect.isExtensible(target)

該方法的做用是檢查一個對象是否能夠擴展的,也就是說對象裏面是否能夠添加新的屬性或方法。
target參數表示目標對象。若是該目標對象不是一個對象的話,那麼函數會拋出一個異常。
該函數會返回一個Boolean值,若是爲true的話,說明該對象能夠擴展,不然的話返回false,表示該對象不能夠擴展。
以下demo來演示下:

const obj = {};
// 判斷該對象是否能夠擴展,使用 Reflect.isExtensible 該方法
const t1 = Reflect.isExtensible(obj);
console.log(t1);  // true

// 使用 Reflect.preventExtensions 來阻止該對象擴展
Reflect.preventExtensions(obj);

// 再來擴展下該對象,看是否能夠
const t2 = Reflect.isExtensible(obj);

console.log(t2); // false

十一:Reflect.getOwnPropertyDescriptor(target, name)

該方法的參數以下解析:
target: 表示的是目標對象。
name: 表示目標對象的屬性
該方法的具體含義是:若是目標對象中的屬性描述符存在的話,就返回這個屬性描述符,若是不存在,就返回undefined。
以下demo演示:

const obj = {};

Reflect.defineProperty(obj, 'name', {
  configurable: true,
  enumerable: true,
  writable: true,
  value: '30'
});

const test1 = Reflect.getOwnPropertyDescriptor(obj, 'name');
/*
 打印值以下:
 {
  configurable: true
  enumerable: true
  value: "30"
  writable: true
 }
*/
console.log(test1);

const test2 = Reflect.getOwnPropertyDescriptor(obj, 'age');
console.log(test2); // undefined

// 若是第一個參數不是對象
const test3 = Object.getOwnPropertyDescriptor('kkkk', 'name');
console.log(test3); // undefined

// 使用 try catch 包圍,會執行 catch方法內部代碼
try {
    const test4 = Reflect.getOwnPropertyDescriptor('kkkk', 'name');
    console.log(test4);
} catch (e) {
    console.log('error');
} 

十二:Reflect.getPrototypeOf(target)

 該方法是返回一個對象的原型的,也就是說內部的 [[Prototype]] 屬性的值。來看以下代碼:

function testA() {};

testA.prototype.xxx = function() {};

const a = new testA();

console.log(Object.getPrototypeOf(a));

打印 以下圖所示:

十三:Reflect.setPrototypeOf(target, prototype) 

該方法的做用是設置一個對象的原型。若是設置成功的話,這個對象就返回一個true,若是設置失敗的話,這個對象就返回一個false。
好比以下代碼:

const obj = {};
const test1 = Reflect.setPrototypeOf(obj, Object.prototype);
console.log(test1); // true

let test2 = Reflect.setPrototypeOf(Object.freeze({}), null);
console.log(test2); // false
相關文章
相關標籤/搜索