最好的办法是部分应用参数。下面是较新的跨浏览器实现Function.prototype.bind
。project.bind
, 使用下面的实现,Function.prototype.bind
如果它可用,将使用原生,如果原生不可用,将使用自定义实现。
更新
我创建了一个工作Fiddle。
project = {};
project.bindJs_ = function(fn, selfObj, var_args) {
if (!fn) {
throw new Error();
}
if (arguments.length > 2) {
var boundArgs = Array.prototype.slice.call(arguments, 2);
return function() {
// Prepend the bound arguments to the current arguments.
var newArgs = Array.prototype.slice.call(arguments);
Array.prototype.unshift.apply(newArgs, boundArgs);
return fn.apply(selfObj, newArgs);
};
} else {
return function() {
return fn.apply(selfObj, arguments);
};
}
};
// A router for the native Function.prototype.bind
project.bindNative_ = function(fn, selfObj, var_args) {
return /** @type {!Function} */ (fn.call.apply(fn.bind, arguments));
};
project.bind = function() {
if (Function.prototype.bind &&
Function.prototype.bind.toString().indexOf('native code') != -1) {
project.bind = project.bindNative_;
} else {
project.bind = project.bindJs_;
}
return project.bind.apply(null, arguments);
};
现在你可以这样做:
x.prototype.a = function() {
ob2.on('data', project.bind(function() {
// the this. object inside the function will now point to x.
this.z = 'some new value';
}, this, any, argument, you, want, to, pass));
}