手记

借助apply手写bind方法

        之前看过很多次bind方法的用法,每次看了只是当时明白,平时很少使用到,更没有手写过它的实现,今天在学习设计模式的过程中又遇到了,决定对着bind撸一哈,于是乎就有了下面这一段:

Function.prototype._bind = function(){	var _this = this;	var context = Array.prototype.shift.call(arguments); // 获取this绑定的对象	var args = Array.prototype.slice.call(arguments); // 获取第一次传入的参数并转为数组格式	return function () { // 返回新函数		var argument = Array.prototype.slice.call(arguments);		_this.apply(context, Array.prototype.concat.call(args, argument)); // 第一次传入的参数拼接后面传入的参数	}};function sum(a, b, c) {	console.log(this.total, a + b + c);}var obj = {	total: ''}sum.bind(obj)(4, 2, 3); // 9sum._bind(obj, 4, 2)(3); // 9


0人推荐
随时随地看视频
慕课网APP