手写bind完整版

手写bind完整版

function fn(a, b, c, d) { //测试方法
    console.log(a, b, c, d);
    console.log(this)
    return {a:124}
}
Function.prototype.mybind = function (ctx) {
    var args = Array.prototype.slice.call(arguments, 1);
    var fn = this;
    return function A() {
        var restArgs = Array.prototype.slice.call(arguments);
        var allArgs = args.concat(restArgs);
        if (Object.getPrototypeOf(this) === A.prototype) {//这里是处理用new newFn()
            // return new fn(...allArgs) //如果不用这种写法可以手写一下
            //创建一个空对象
            // var obj = {}
            // Object.setPrototypeOf(obj, fn.prototype);
            //也可以这么写
            var obj = Object.create(fn.prototype);
            var result = fn.apply(obj, allArgs)
            return (typeof result === 'object' && result != null) ? result : obj;//这里要判断一下fn.apply(obj, allArgs)的返回结果

        } else {
            return fn.apply(ctx, allArgs);
        }
    }
}

const newFn = fn.mybind('ctx', 1, 2);
let result = newFn(3, 4);
console.log(result)
//打印结果
//1 2 3 4
//[String: 'ctx']
//{ a: 124 }

let result1 = new newFn(3, 4);
console.log(result1)
//打印结果
//1 2 3 4
//fn {}
//{ a: 124 }

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值