bind模拟

Posted chauvet

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bind模拟相关的知识,希望对你有一定的参考价值。

if (!Function.prototype.bind) {
        Function.prototype.bind = function(oThis) {
        if (typeof this !== ‘function‘) {
    
        throw new TypeError(‘What is trying to be bound is not callable‘);

    }
    var aArgs = Array.prototype.slice.call(arguments, 1),
        fToBind = this,
        fNOP = function() {},
        fBound = function() {
        return fToBind.apply(this.instanceof fNOP ? this : oThis,     aArgs.concat(Array.prototype.slice.call(arguments)));

        fNOP.prototype = this.prototype;
        fBound.prototype = new fNOP();

        return fBound;
        }
    }        
}

  

以上是关于bind模拟的主要内容,如果未能解决你的问题,请参考以下文章

26个jQuery代码片段使用技巧

Kotlin Android Studio - setContenView - 绑定(片段)

理解javascript中bind的使用和模拟实现

bind模拟

学习Javascript之模拟实现bind

Javascript——bind的模拟实现