你不知道的js上--bind 实现方式

if (!Function.prototype.bind) { Function.prototype.bind = function(oThis) {
if (typeof this !== "function") { // 与 ECMAScript 5 最接近的 // 内部 IsCallable 函数
throw new TypeError(
                     "Function.prototype.bind - what is trying " +
                     "to be bound is not callable"
  bar(3) 并没有像我们预计的那样把 obj1.a
 this全面解析 | 93
); }
var aArgs = Array.prototype.slice.call( arguments, 1 ), fToBind = this,
fNOP = function(){}, fBound = function(){
return fToBind.apply( (
this instanceof fNOP &&
oThis ? this : oThis ),
                         aArgs.concat(
                            Array.prototype.slice.call( arguments )
); }
;
fNOP.prototype = this.prototype;
fBound.prototype = new fNOP(); return fBound;
}; }

下面是 new 修改 this 的相关代码: this instanceof fNOP &&
oThis ? this : oThis // ... 以及:
fNOP.prototype = this.prototype; fBound.prototype = new fNOP();
我们并不会详细解释这段代码做了什么(这非常复杂并且不在我们的讨论范围之内),不 过简单来说,这段代码会判断硬绑定函数是否是被 new 调用,如果是的话就会使用新创建 的 this 替换硬绑定的 this

什么情况下 this instanchof fNOP == true 呢?
我试了下

var func = function (){}
function test(){console.log(this instanceof func)}
new test();

输出的结果也是false呢~求教

阅读 1.6k
2 个回答
function tt(){
        function f(){};
        function s(){
            if(this instanceof f){
                alert(1);
            }
        }
        s.prototype=new f();
        return s;
    }
    var m=tt();
    new m();

为了bind返回的函数new依旧是new之后的对象 而不是bind的context 所以用了类似继承的东西

instanceof操作符是检测对象的原型链上是否包含右侧的原型,所以你的测试必然是false

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题