我想在回调函数中引用'this',但不能保证'this'将引用正确的对象。是否适合创建一个引用'this'的局部变量并在匿名函数中使用该变量?
示例:
var MyClass = function (property) {
this.property = property;
someAsynchronousFunction(property, function (result) {
this.otherProperty = result; // 'this' could be wrong
});
};
问题是,异步函数可以从任意上下文调用提供的回调(这通常在我的控制范围之外,例如在使用库时)。
我建议的解决方案是:
var MyClass = function (property) {
this.property = property;
var myClass = this;
someAsynchronousFunction(property, function (result) {
myClass.otherProperty = result; // references the right 'this'
});
};
但我一直在寻找是否有其他策略,或者这个解决方案是否存在任何问题。
答案 0 :(得分:5)
你所做的是确保你引用正确的对象的经典方法,虽然你应该在本地定义,即:
function(property) {
var that = this;
someFunc(function(result) {
that.property = whatever;
}
}
或者,在现代浏览器中,您可以明确地绑定它:
someFunc(function(result) {
this.property = whatever;
}.bind(this));
另请参阅:bind()
jQuery等库支持后一种功能,作为更多浏览器支持的代理功能,可以简化为这种可重用的功能:
function proxy(fn, ctx)
{
return function() {
return fn.apply(ctx, arguments);
}
}
使用它:
someFunc(proxy(function(result) {
this.property = whatever;
}, this));
答案 1 :(得分:2)
是的,没关系,但不要像你那样使用隐式全局变量,使用局部变量:
var myClass = this;