Function.prototype.bind 简介

Posted savokiss

tags:

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

bind可以解决两种问题:

1. 可以改变一个函数的 this 指向

2. 可以实现偏函数等高阶功能

本文暂且讨论第一个功能

 

USE CASE

var foo = {
    x: 3
}

var bar = function(){
    console.log(this.x);
}

bar(); // undefined

var boundFunc = bar.bind(foo);

boundFunc(); // 3

 

简易版实现方式

Function.prototype.bind = function (scope) {
    var fn = this;
    return function () {
        return fn.apply(scope);
    };
}

 

 

参考链接:https://www.smashingmagazine.com/2014/01/understanding-javascript-function-prototype-bind/

以上是关于Function.prototype.bind 简介的主要内容,如果未能解决你的问题,请参考以下文章

Function.prototype.bind 简介

Javascript:function.prototype.bind() 中的参数解包? [复制]

Function.prototype.bind()

text Function.prototype.bind()

认识 Function.prototype.bind()

面向对象的JavaScript-006-Function.prototype.bind() 的4种作用