码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript Patterns 6.7 Borrowing Methods

时间:2014-07-22 22:41:33      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:style   blog   java   color   os   strong   

Scenario

You want to use just the methods you like, without inheriting all the other methods that you’ll never need. This is possible with the borrowing methods pattern, which benefits from the function methods  call() and apply().

// call() example

notmyobj.doStuff.call(myobj, param1, p2, p3);

// apply() example

notmyobj.doStuff.apply(myobj, [param1, p2, p3]); 

 

Example: Borrow from Array

// Example for calling the slice

function f() {

    var args = [].slice.call(arguments, 1, 3);

    return args;

}

// example

f(1, 2, 3, 4, 5, 6); // returns [2,3]

 

Borrow and Bind

When borrowing methods either through call()/apply() or through simple assignment, the object that this points to inside of the borrowed method is determined based on the call expression. But sometimes it’s best to have the value of  this “locked” or bound to a specific object and predetermined in advance. 

var one = {

    name: "object",

    say: function (greet) {

        return greet + ", " + this.name;

    }

};

var two = {

    name: "another object"

}; 

var say = one.say; 

// passing as a callback

var yetanother = {

    name: "Yet another object",

    method: function (callback) {

        return callback(‘Hola‘);

    }

}; 

one.say(‘hi‘); // "hi, object"

one.say.apply(two, [‘hello‘]); // "hello, another object"

say(‘hoho‘); // "hoho, undefined"

yetanother.method(one.say); // "Holla, undefined"

 

Solution

This bind() function accepts an object o and a method m, binds the two together, and then returns another function. The returned function as access to  o and  m via a closure. Therefore even after  bind() returns, the inner function will have access to  o and  m, which will always point to the original object and method.

function bind(o, m) {

    return function () {

        return m.apply(o, [].slice.call(arguments));

    };

} 

var twosay = bind(two, one.say);

twosay(‘yo‘); // "yo, another object"

 

Disadvantage

The price you pay for the luxury of having a bind is the additional closure.

Function.prototype.bind()

 

ECMAScript 5 adds a method bind() to Function.prototype, making it just as easy to use as apply() and call().

var newFunc = obj.someFunc.bind(myobj, 1, 2, 3);

 

Implement Function.prototype.bind() when your program runs in pre-ES5 environments.

 

It’s using partial application and concatenating the list of arguments—those passed to  bind()(except the first) and those passed when the new function returned by  bind() is called later. 

var twosay2 = one.say.bind(two);

twosay2(‘Bonjour‘); // "Bonjour, another object"

 

References: 

JavaScript Patterns - by Stoyan Stefanov (O`Reilly)

JavaScript Patterns 6.7 Borrowing Methods,布布扣,bubuko.com

JavaScript Patterns 6.7 Borrowing Methods

标签:style   blog   java   color   os   strong   

原文地址:http://www.cnblogs.com/haokaibo/p/Borrowing-Methods.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!