【筆記】apply, call 與 bind
一直對Javascript中的apply/call/bind的用法很模糊,恰好看到了這篇文章。對三者之間的區別與聯絡算是有了比較清晰的認識。
在Javascript中,Function是一種物件。Function物件中的this指向決定於函式被呼叫的方式。
使用apply,call 與 bind 均可以改變函式物件中this的指向。
apply / call
function add(c, d){
return this.a + this.b + c + d;
}
var o = {a:1, b:3};
add.call(o, 5, 7); // 1 + 3 + 5 + 7 = 16
add.apply(o, [10, 20]); // 1 + 3 + 10 + 20 = 34
注意,如果傳入的第一個引數不是物件型別的,如1,那麼這個引數會被自動轉化為物件型別。
function bar() {
console.log(
Object.prototype.toString.call(this)
);
}
bar.call(7); // [object Number]
bind
ECMAScript 5引入了Function.prototype.bind。呼叫f.bind(someObject)會產生一個新的函式物件。在這個新的函式物件中,this被永久繫結到了bind的第一個引數上面,無論後期這個新的函式被如何使用。
function f(){
return this.a;
}
var g = f.bind({a:"azerty"});
console.log(g()); // azerty
var o = {a:37, f:f, g:g};
console.log(o.f(), o.g()); // 37, azerty
另外,如果第一個引數為null或者undefined的話,那麼,實際上繫結到的是全域性物件,即global。這一點對三者都適用。
function bar() {
console.log(
Object.prototype.toString.call(this)
);
}
bar.bind()(); // [object global]
bar.apply(); // [object global]
bar.call(); // [object global]
相關文章
- this指向與call,apply,bindAPP
- this、apply、call、bindAPP
- Javascript - apply、call、bindJavaScriptAPP
- this, call, apply 和 bindAPP
- apply call bind的用法與實現APP
- this與new、call、apply、bind的關係APP
- 回味JS基礎:call apply 與 bindJSAPP
- apply & call & bind 原始碼APP原始碼
- bind/call/apply 深度理解APP
- 手寫call,apply,bindAPP
- apply,call,bind的用法APP
- call、apply、bind 區別APP
- apply call bind 簡介APP
- 手寫call、apply、bindAPP
- call apply bind區別APP
- JavaScript-apply、bind、callJavaScriptAPP
- [譯] Javascript: call()、apply() 和 bind()JavaScriptAPP
- JavaScript重識bind、call、applyJavaScriptAPP
- JavaScript 中的 apply、call、bindJavaScriptAPP
- JS中的call、apply、bindJSAPP
- js call,apply,bind總結JSAPP
- bind、call、apply的區別與實現原理APP
- JavaScript中apply、call、bind的區別與用法JavaScriptAPP
- JS核心系列:淺談 call apply 與 bindJSAPP
- call,apply,bind,new實現原理APP
- 模擬實現apply/call/bindAPP
- call.apply.bind 走一個!APP
- call,apply和bind的區別APP
- 一文搞懂 this、apply、call、bindAPP
- js call、apply、bind的實現JSAPP
- bind,call,apply模擬實現APP
- JS中的call、apply、bind方法JSAPP
- javascript -- apply/call/bind的區別JavaScriptAPP
- js中call、apply、bind函式JSAPP函式
- js中call、apply、bind的用法JSAPP
- 【面試題】手寫call、apply、bind面試題APP
- 跟我學習javascript的call(),apply(),bind()與回撥JavaScriptAPP
- 一文理解 this、call、apply、bindAPP