使用Object.create()时,如何使用其他对象键引用对象键

时间:2016-11-27 18:13:48

标签: javascript event-handling object-create

我正在尝试通过制作一个人为的计算器模块来学习Object.create。我已尝试bind我尝试删除this,但没有结果。

问题:

如何在类的另一个属性中引用对象的属性,就像使用类一样。或者我的示例不是一个非常好的模式?如果是这样,那么 我应该如何构建我的计算器对象以在creation上提供事件监听器?

Calculator.js

const Calculator = {
  inputArr: [],
  init: (selector)=> {
    const el = document.querySelector(selector);
    el.addEventListener('click', this.pushValue); // this wont work.
    return this;
  },
  pushValue: (e) => {
    let val = e.target.value;
    if(val){
      this.inputArr.push(val);
      console.log(e.target, this.inputArr); // this wouldn't work.
    }
  }
};

const adder = Object.create(Calculator).init('#calc');

HTML:

<div id="calc">
  <button class="btns" value="1">1</button>
  <button class="btns" value="2">2</button>
</div>

1 个答案:

答案 0 :(得分:3)

该代码中的问题是您使用了箭头功能,但是关闭了错误的this。箭头函数靠近它们定义的this,而不是在它们被调用时设置。在您的情况下,它在全球范围内关闭this

如果您使initpushValue正常函数并通过对Object.create创建的对象的引用来调用它们,则会使用正确的this调用它们:

const Calculator = {
  inputArr: [],
  init: function(selector) {                                 // ****
    const el = document.querySelector(selector);
    el.addEventListener('click', this.pushValue.bind(this)); // ****
    return this;
  },
  pushValue: function(e) {                                   // ****
    let val = e.target.value;
    if(val){
      this.inputArr.push(val);
      console.log(e.target, this.inputArr);
    }
  }
};

const adder = Object.create(Calculator).init('#calc');

您需要bind来自事件监听器的pushValue调用(否则,this将引用该元素)。或者,将其包裹在箭头中:

el.addEventListener('click', e => this.pushValue(e));

使用this.pushValue上的箭头包装器的工作示例:

&#13;
&#13;
const Calculator = {
  inputArr: [],
  init: function(selector) { // ****
    const el = document.querySelector(selector);
    el.addEventListener('click', e => this.pushValue(e)); // ****
    return this;
  },
  pushValue: function(e) { // ****
    let val = e.target.value;
    if (val) {
      this.inputArr.push(val);
      console.log(e.target, this.inputArr);
    }
  }
};

const adder = Object.create(Calculator).init('#calc');
&#13;
<div id="calc">
  <button class="btns" value="1">1</button>
  <button class="btns" value="2">2</button>
</div>
&#13;
&#13;
&#13;