在使用方法作为事件处理程序的上下文中(即$(...).on('something', myObject.handleSomething)
)。我发现 $.proxy 和 _.bind ( http://jsperf.com/bind-vs-jquery-proxy/27 )之间存在相对较大的性能差异,并查看了它们的实现。
jQuery ( http://james.padolsey.com/jquery/#v=1.10.2&fn=proxy ) 最终返回:
args = core_slice.call(arguments, 2);
proxy = function () {
return fn.apply(context || this, args.concat(core_slice.call(arguments)));
};
而下划线(http://underscorejs.org/docs/underscore.html#section-60)最终返回(ctor is var ctor = function(){};
):
args = slice.call(arguments, 2);
return bound = function() {
if (!(this instanceof bound)) return func.apply(context, args.concat(slice.call(arguments)));
ctor.prototype = func.prototype;
var self = new ctor;
ctor.prototype = null;
var result = func.apply(self, args.concat(slice.call(arguments)));
if (Object(result) === result) return result;
return self;
};
我知道这_.bind
将允许我为new
调用绑定参数,但如果我只想myObject.handleSomething
用作事件处理程序,它会有任何实际优势吗?
是否可以编写类似于_.bindAll
using的内容$.proxy
?例如
$.proxyAll = function (obj) {
for (var attr in obj) if (obj.hasOwnProperty(attr) && $.isFunction(obj[attr])) {
obj[attr] = $.proxy(obj[attr], obj);
}
return obj;
};