首页 > 其他 > 详细

underscore functions

时间:2015-08-17 21:39:00      阅读:205      评论:0      收藏:0      [点我收藏+]

_.bind(function, object, [*arguments]) :绑定function到object,任何时候调用函数,都指向这个object。不能绑定两个对象。没看明白

其实apply和call也能改变this的指定,只是bind之后,可以省略掉apply和call

_.bind = function bind(func, context) {
	var bound, args;
	if (func.bind === nativeBind && nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));
	if (!_.isFunction(func)) throw new TypeError;
	args = slice.call(arguments, 2);
	return bound = function() {
	  //什么时候this instanceof bound = true?
	  if (!(this instanceof bound)) return func.apply(context, args.concat(slice.call(arguments)));
	  ctor.prototype = func.prototype;
	  var self = new ctor;
	  var result = func.apply(self, args.concat(slice.call(arguments)));
	  if (Object(result) === result) return result;
	  return self;
	};
};

 

underscore functions

原文:http://www.cnblogs.com/wang-jing/p/4737609.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!