我正在尝试通过制作一个人为的计算器模块来学习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>
答案 0 :(得分:3)
该代码中的问题是您使用了箭头功能,但是关闭了错误的this
。箭头函数靠近它们定义的this
,而不是在它们被调用时设置。在您的情况下,它在全球范围内关闭this
。
如果您使init
和pushValue
正常函数并通过对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
上的箭头包装器的工作示例:
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;