Javascript中bind()方法的使用與實現

在討論bind()方法以前咱們先來看一道題目:javascript

javascriptvar altwrite = document.write;
altwrite("hello");
//1.以上代碼有什麼問題
//2.正確操做是怎樣的
//3.bind()方法怎麼實現

對於上面這道題目,答案並非太難,主要考點就是this指向的問題,altwrite()函數改變this的指向global或window對象,致使執行時提示非法調用異常,正確的方案就是使用bind()方法:java

javascriptaltwrite.bind(document)("hello")

固然也可使用call()方法:web

javascriptaltwrite.call(document, "hello")

本文的重點在於討論第三個問題bind()方法的實現,在開始討論bind()的實現以前,咱們先來看看bind()方法的使用:數組

綁定函數

bind()最簡單的用法是建立一個函數,使這個函數不論怎麼調用都有一樣的this值。常見的錯誤就像上面的例子同樣,將方法從對象中拿出來,而後調用,而且但願this指向原來的對象。若是不作特殊處理,通常會丟失原來的對象。使用bind()方法可以很漂亮的解決這個問題:瀏覽器

javascriptthis.num = 9; 
var mymodule = {
  num: 81,
  getNum: function() { return this.num; }
};

module.getNum(); // 81

var getNum = module.getNum;
getNum(); // 9, 由於在這個例子中,"this"指向全局對象

// 建立一個'this'綁定到module的函數
var boundGetNum = getNum.bind(module);
boundGetNum(); // 81

偏函數(Partial Functions)

Partial Functions也叫Partial Applications,這裏截取一段關於偏函數的定義:app

Partial application can be described as taking a function that accepts some number of arguments, binding values to one or more of those arguments, and returning a new function that only accepts the remaining, un-bound arguments.dom

這是一個很好的特性,使用bind()咱們設定函數的預約義參數,而後調用的時候傳入其餘參數便可:函數

javascriptfunction list() {
  return Array.prototype.slice.call(arguments);
}

var list1 = list(1, 2, 3); // [1, 2, 3]

// 預約義參數37
var leadingThirtysevenList = list.bind(undefined, 37);

var list2 = leadingThirtysevenList(); // [37]
var list3 = leadingThirtysevenList(1, 2, 3); // [37, 1, 2, 3]

和setTimeout一塊兒使用

通常狀況下setTimeout()的this指向window或global對象。當使用類的方法時須要this指向類實例,就可使用bind()將this綁定到回調函數來管理實例。this

javascriptfunction Bloomer() {
  this.petalCount = Math.ceil(Math.random() * 12) + 1;
}

// 1秒後調用declare函數
Bloomer.prototype.bloom = function() {
  window.setTimeout(this.declare.bind(this), 1000);
};

Bloomer.prototype.declare = function() {
  console.log('我有 ' + this.petalCount + ' 朵花瓣!');
};

注意:對於事件處理函數和setInterval方法也可使用上面的方法prototype

綁定函數做爲構造函數

綁定函數也適用於使用new操做符來構造目標函數的實例。當使用綁定函數來構造實例,注意:this會被忽略,可是傳入的參數仍然可用。

javascriptfunction Point(x, y) {
  this.x = x;
  this.y = y;
}

Point.prototype.toString = function() { 
  return this.x + ',' + this.y; 
};

var p = new Point(1, 2);
p.toString(); // '1,2'


var emptyObj = {};
var YAxisPoint = Point.bind(emptyObj, 0/*x*/);
// 實現中的例子不支持,
// 原生bind支持:
var YAxisPoint = Point.bind(null, 0/*x*/);

var axisPoint = new YAxisPoint(5);
axisPoint.toString(); // '0,5'

axisPoint instanceof Point; // true
axisPoint instanceof YAxisPoint; // true
new Point(17, 42) instanceof YAxisPoint; // true

上面例子中Point和YAxisPoint共享原型,所以使用instanceof運算符判斷時爲true。

捷徑

bind()也能夠爲須要特定this值的函數創造捷徑。

例如要將一個類數組對象轉換爲真正的數組,可能的例子以下:

javascriptvar slice = Array.prototype.slice;

// ...

slice.call(arguments);

若是使用bind()的話,狀況變得更簡單:

javascriptvar unboundSlice = Array.prototype.slice;
var slice = Function.prototype.call.bind(unboundSlice);

// ...

slice(arguments);

實現

上面的幾個小節能夠看出bind()有不少的使用場景,可是bind()函數是在 ECMA-262 第五版才被加入;它可能沒法在全部瀏覽器上運行。這就須要咱們本身實現bind()函數了。

首先咱們能夠經過給目標函數指定做用域來簡單實現bind()方法:

javascriptFunction.prototype.bind = function(context){
  self = this;  //保存this,即調用bind方法的目標函數
  return function(){
      return self.apply(context,arguments);
  };
};

考慮到函數柯里化的狀況,咱們能夠構建一個更加健壯的bind()

javascriptFunction.prototype.bind = function(context){
  var args = Array.prototype.slice.call(arguments, 1),
  self = this;
  return function(){
      var innerArgs = Array.prototype.slice.call(arguments);
      var finalArgs = args.concat(innerArgs);
      return self.apply(context,finalArgs);
  };
};

此次的bind()方法能夠綁定對象,也支持在綁定的時候傳參。

繼續,Javascript的函數還能夠做爲構造函數,那麼綁定後的函數用這種方式調用時,狀況就比較微妙了,須要涉及到原型鏈的傳遞:

javascriptFunction.prototype.bind = function(context){
  var args = Array.prototype.slice(arguments, 1),
  F = function(){},
  self = this,
  bound = function(){
      var innerArgs = Array.prototype.slice.call(arguments);
      var finalArgs = args.concat(innerArgs);
      return self.apply((this instanceof F ? this : context), finalArgs);
  };

  F.prototype = self.prototype;
  bound.prototype = new F();
  retrun bound;
};

這是《JavaScript Web Application》一書中對bind()的實現:經過設置一箇中轉構造函數F,使綁定後的函數與調用bind()的函數處於同一原型鏈上,用new操做符調用綁定後的函數,返回的對象也能正常使用instanceof,所以這是最嚴謹的bind()實現。

對於爲了在瀏覽器中能支持bind()函數,只須要對上述函數稍微修改便可:

javascriptFunction.prototype.bind = function (oThis) {
    if (typeof this !== "function") {
      throw new TypeError("Function.prototype.bind - 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 && oThis ? this : oThis || window,
              aArgs.concat(Array.prototype.slice.call(arguments))
          );
        };

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

    return fBound;
  };

歡迎光臨小弟博客:Superlin's Blog
個人博客原文:Javascript中bind()方法的使用與實現

相關文章
相關標籤/搜索