gpt4 book ai didi

javascript - 我可以将本地 var 设置为 'this' 以在匿名回调函数中引用它吗?

转载 作者:行者123 更新时间:2023-12-03 16:28:43 27 4
gpt4 key购买 nike

我想在回调函数中引用“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'
});
};

但我想看看是否还有其他策略,或者这个解决方案是否有任何问题。

最佳答案

你所做的是确保引用正确对象的经典方法, 尽管你应该在本地定义它 ,即:

function(property) {
var that = this;

someFunc(function(result) {
that.property = whatever;
}
}

或者,在现代浏览器中,您可以显式绑定(bind)它:

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));

关于javascript - 我可以将本地 var 设置为 'this' 以在匿名回调函数中引用它吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16745954/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com