gpt4 book ai didi

javascript - 你不知道的JS书,软化 'this'绑定(bind)

转载 作者:行者123 更新时间:2023-12-01 01:31:15 25 4
gpt4 key购买 nike

YDKJS 书中包含一个描述 soft binding 的部分。效用:

if (!Function.prototype.softBind) {
Function.prototype.softBind = function(obj) {
var fn = this,
curried = [].slice.call( arguments, 1 ),
bound = function bound() {
return fn.apply(
(!this ||
(typeof window !== "undefined" &&
this === window) ||
(typeof global !== "undefined" &&
this === global)
) ? obj : this,
curried.concat.apply( curried, arguments )
);
};
bound.prototype = Object.create( fn.prototype );
return bound;
};
}

我无法理解这一行:curried.concat.apply( curried,arguments )。为什么我们要将已经柯里化(Currying)的参数与参数对象而不是简单地使用柯里化(Currying)数组:

...
) ? obj : this,
curried
);
};
bound.prototype = Object.create( fn.prototype );
...

最佳答案

当您调用绑定(bind)函数时,首先会传递绑定(bind)参数,然后传递调用绑定(bind)版本的新参数。

function log(a, b, c, d, e) {
console.log([a, b, c, d, e]);
}

log(1, 2, 3, 4, 5);

const bound = log.bind(null, 1, 2, 3);

bound(4, 5);

如果您没有连接绑定(bind)参数和新参数,那么您只能记录 1、2 和 3。

关于javascript - 你不知道的JS书,软化 'this'绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53251976/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com