有一些功能,可以做很长时间的工作,并提供回调。
someFunc: function(argument, callback, context) {
// do something long
// call callback function
callback(context);
}
在应用程序中我使用此功能
someFunc('bla-bla', function (context) {
// do something with this scope
context.anotherFunc();
}, this);
如何在不传递context
参数的情况下实现回调函数?
需要这样的:
someFunc('bla-bla', function () {
// do something with this scope
this.anotherFunc();
}, this);
答案 0 :(得分:40)
接受的答案似乎有点过时了。假设您使用的是相对较新的浏览器,则可以在vanilla javascript中使用Function.prototype.bind
。或者,如果您使用underscore或jQuery,则可以分别使用_.bind
或$.proxy
(如果您使用call
/ apply
必要)。
以下是这三个选项的简单演示:
// simple function that takes another function
// as its parameter and then executes it.
function execute_param(func) {
func();
}
// dummy object. providing an alternative context.
obj = {};
obj.data = 10;
// no context provided
// outputs 'Window'
execute_param(function(){
console.log(this);
});
// context provided by js - Function.prototype.bind
// src: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind
// outputs 'Object { data=10 }''
execute_param(function(){
console.log(this);
}.bind(obj));
// context provided by underscore - _.bind
// src: http://underscorejs.org/#bind
// outputs 'Object { data=10 }'
execute_param(_.bind(function(){
console.log(this);
},obj));
// context provided by jQuery - $.proxy
// src: http://api.jquery.com/jQuery.proxy/
// outputs 'Object { data=10 }'
execute_param($.proxy(function(){
console.log(this);
},obj));
您可以在jsfiddle中找到代码:http://jsfiddle.net/yMm6t/1/(注意:确保开发者控制台已打开,否则您将看不到任何输出)
答案 1 :(得分:13)
使用Function.prototype.call
调用函数并手动设置该函数的this
值。
someFunc: function(argument, callback, context) {
callback.call(context); // call the callback and manually set the 'this'
}
现在您的回调具有预期的this
值。
someFunc('bla-bla', function () {
// now 'this' is what you'd expect
this.anotherFunc();
}, this);
当然,您可以在.call
调用中传递正常的参数。
callback.call(context, argument);