gpt4 book ai didi

Javascript 函数绑定(bind)覆盖(如何将其绑定(bind)到另一个对象)

转载 作者:可可西里 更新时间:2023-11-01 02:05:25 25 4
gpt4 key购买 nike

有没有办法重新绑定(bind)一个已经通过 Function.prototype.bind 绑定(bind)到另一个对象的函数?

var a={};
var b={};
var c=function(){ alert(this===a); };
c(); // alerts false
c=c.bind(a);
c(); // alerts true
c=c.bind(b);
c(); // still alerts true

我知道我可以使用不同的方法并保留一个“干净”的绑定(bind)函数,但我只是想知道如何重用一个已经绑定(bind)的函数。

最佳答案

Is there a way to rebind a function that is already bound to another object via Function.prototype.bind?

没有。来自ES2015 spec关于 Function.prototype.bind:

19.2.3.2 Function.prototype.bind ( thisArg , ...args)

[...]

Note 2: If Target is an arrow function or a bound function then the thisArg passed to this method will not be used by subsequent calls to F.

早期版本也是如此。

关于Javascript 函数绑定(bind)覆盖(如何将其绑定(bind)到另一个对象),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31656593/

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