码迷,mamicode.com
首页 > 其他好文 > 详细

ES6知识点整理之----Proxy----this

时间:2018-09-19 13:32:02      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:err   问题   hand   color   es6   目标   nbsp   ===   get   

1、在 Proxy 代理的情况下,目标对象内部的this关键字会指向 Proxy 代理。

2、有些原生对象的内部属性,只有通过正确的this才能拿到,所以 Proxy 也无法代理这些原生对象的属性。

const target = new Date();
const handler = {};
const proxy = new Proxy(target, handler);

proxy.getDate();
// TypeError: this is not a Date object.

this绑定原始对象,就可以解决这个问题。

const target = new Date(‘2015-01-01‘);
const handler = {
  get(target, prop) {
    if (prop === ‘getDate‘) {
      return target.getDate.bind(target);
    }
    return Reflect.get(target, prop);
  }
};
const proxy = new Proxy(target, handler);

proxy.getDate() // 1

 

ES6知识点整理之----Proxy----this

标签:err   问题   hand   color   es6   目标   nbsp   ===   get   

原文地址:https://www.cnblogs.com/adhehe/p/9673966.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!