在 Titanium 下开发我在 OOP JavaScript 和事件处理程序范围内遇到了这种奇怪的行为。这是我的代码:
MyClass = function()
{
this.var1 = '50';
this.button = Ti.UI.createButton({
...
});
this.button.parentRef = this;
this.button.addEventListener('click', function(e){
var self = e.source.parentRef;
console.log(self.var1);
console.log(self.var2);
});
this.var2 = 'Test';
...
/* this.button is then added to a view */
};
...
var c = new MyClass();
...
当我单击按钮时,我希望在控制台中找到:
50
Test
但实际上结果是:
50
<null>
如果我移动作业
this.var2 = '测试'
之前
this.button.addEventListener
语句,结果是:
50
Test
听起来 this.button.parentRef = 这个分配是通过复制而不是通过引用...
这种行为的原因是什么?