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呢~求教
为了bind返回的函数new依旧是new之后的对象 而不是bind的context 所以用了类似继承的东西