admin管理员组文章数量:1344561
I have an object with a method that I’d like to pass to a function as a callback. However, inside the callback, this
no longer refers to my object. Why not?
I’m familiar with using a variable to get around the problem when passing a function literal:
var obj = {
a: function () {
var me = this;
console.log(this);
setTimeout(function () {
console.log(this); // Not obj
console.log(me); // This works!
}, 100);
}
};
How can I fix it in this case?
var obj = {
b: function () {
setTimeout(this.callback, 100);
},
callback: function () {
console.log(this); // =(
}
};
I have an object with a method that I’d like to pass to a function as a callback. However, inside the callback, this
no longer refers to my object. Why not?
I’m familiar with using a variable to get around the problem when passing a function literal:
var obj = {
a: function () {
var me = this;
console.log(this);
setTimeout(function () {
console.log(this); // Not obj
console.log(me); // This works!
}, 100);
}
};
How can I fix it in this case?
var obj = {
b: function () {
setTimeout(this.callback, 100);
},
callback: function () {
console.log(this); // =(
}
};
Share
Improve this question
edited May 19, 2014 at 16:12
Ry-♦
225k56 gold badges492 silver badges499 bronze badges
asked Nov 19, 2011 at 2:57
missingcat92missingcat92
1,1962 gold badges13 silver badges23 bronze badges
1 Answer
Reset to default 11Yes, this
can be kind of tricky in Javascript. The problem is that its value depends on how you call the function.
obj.callback(); //ok
var f = obj.callback;
f(); //does not look like a method call
//Javascript does not pass the this!
The usual workaround is passing a wrapper callback like you did in b), except that the mon name for the me
variable is that
(you sometimes see self
too)
var that = this;
setTimeout( function(){ return that.callback(); }, 300);
The other alternative is to use the bind method from functions
setTimeout( this.callback.bind(this) , 300)
Note that bind is not supported in IE 8 (you might need a shim in that case).
For more:
Maintaining the reference to "this" in Javascript when using callbacks and closures
本文标签: javascriptGet object in member function callbackStack Overflow
版权声明:本文标题:javascript - Get object in member function callback - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743755529a2533440.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论