首頁 > web前端 > js教程 > 主體

淺析Javascript中bind()方法的使用與實作_javascript技巧

WBOY
發布: 2016-05-16 15:02:53
原創
1262 人瀏覽過

在討論bind()方法之前我們先來看一道題目:

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

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

altwrite.bind(document)("hello") 
當然也可以使用call()方法:

altwrite.call(document, "hello") 
本文的重點在於討論第三個問題bind()方法的實現,在開始討論bind()的實現之前,我們先來看看bind()方法的使用:

綁定函數
bind()最簡單的用法是建立一個函數,讓這個函數不論怎麼呼叫都有同樣的this值。常見的錯誤就像上面的例子一樣,將方法從物件中拿出來,然後調用,並且希望this指向原來的物件。如果不做特殊處理,一般會失去原來的物件。使用bind()方法能夠很漂亮的解決這個問題:

this.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,這裡截取一段關於偏函數的定義:

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 ononly cepts the returning a new function that ononly.

這是一個很好的特性,使用bind()我們設定函數的預定義參數,然後呼叫的時候傳入其他參數即可:

function 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綁定到回呼函數來管理實例。


function 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方法也可以使用上面的方法

綁定函式作為建構子

綁定函式也適用於使用new運算元來建構目標函式的實例。當使用綁定函數來建構實例,注意:this會被忽略,但是傳入的參數仍然可用。


function 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值的函數創造捷徑。

例如要將一個類別數組物件轉換為真正的數組,可能的例子如下:

var slice = Array.prototype.slice;

// ...

slice.call(arguments); 
登入後複製
如果使用bind()的話,情況變得更簡單:


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

// ...

slice(arguments); 
登入後複製

實作

上面的幾個小節可以看出bind()有很多的使用場景,但是bind()函數是在 ECMA-262 第五版才被加入;它可能無法在所有瀏覽器上運行。這就需要我們自己實作bind()函數了。

首先我們可以透過給目標函數指定作用域來簡單實作bind()方法:

Function.prototype.bind = function(context){ 
 self = this; //保存this,即调用bind方法的目标函数
 return function(){
   return self.apply(context,arguments);
 };
};
登入後複製
考慮到函數柯里化的情況,我們可以建構一個更健壯的bind():


Function.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的函數也可以作為建構函數,那麼綁定後的函數用這種方式呼叫時,情況就比較微妙了,需要涉及到原型鏈的傳遞:


Function.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();
 return bound;
};
登入後複製
這是《JavaScript Web Application》一書中對bind()的實作:透過設定一個中轉建構函式F,讓綁定後的函式與呼叫bind()的函式處於同一原型鏈上,用new操作符呼叫綁定後的函數,傳回的物件也能正常使用instanceof,因此這是最嚴謹的bind()實作。

對於為了在瀏覽器中能支援bind()函數,只需要稍微修改上述函數即可:


Function.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;
 };
登入後複製
以上這篇淺析Javascript中bind()方法的使用與實現就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!