JavaScript绑定与匿名函数

时间:2016-06-19 20:47:59

标签: javascript node.js anonymous-function

来自mongoose-deep-populate的

This code

  async.parallel([
  User.create.bind(User, {_id: 1, manager: 2, mainPage: 1}),
  Comment.create.bind(Comment, {_id: 3, user: 1}),
  ...
], cb)

使用Function.prototype.bind确保在不同的上下文中执行回调函数thisUser.create绑定到正确的对象。这相当于

async.parallel([
    function() { User.create({_id: 1, manager: 2, mainPage: 1}) }, 
    function() { Comment.create({_id: 3, user: 1}) },
], cb) 

如果是这样,与使用匿名函数相比,bind在什么情况下是更优选的语法?

1 个答案:

答案 0 :(得分:2)

这两种情况完全不同,因为您使用的是常量值,但在您的示例中并不清楚,但请考虑以下因素:

function mul(num, times) {
    return num * times;
}

function fn1() {
    let num = 3;

    let cb = function(times) {
        return mul(num, times);
    }

    num = 5;
    console.log(`num is now: ${ num }`);

    return cb;
}

function fn2() {
    let num = 3;

    let cb = mul.bind(null, num);

    num = 5;
    console.log(`num is now: ${ num }`);

    return cb;
}

当你运行这两个时,你会得到不同的结果:

let a1 = fn1()(5); // a1 === 25
let a2 = fn2()(5); // s2 === 15

两者之间的区别在于,当使用bind时,将当前值绑定到函数(作为参数),而在使用匿名函数时,使用的值将是调用函数时存在的值。

在某些情况下,执行该功能时甚至可能会遇到undefined

var a = ["zero", "one", "two", "three", "four", "five"];
function fn(value, index) {
    console.log(value, index);
}

// doesn't work as i is undefined when the function is invoked
for (var i = 0; i < a.length; i++) {
    setTimeout(() => {
        fn(a[i], i);
    }, 45);
}

// works because the value of i and the value of a[i] are bound
for (var i = 0; i < a.length; i++) {
    setTimeout(fn.bind(null, a[i], i), 45);
}

(如果您使用let代替var,则匿名函数示例将有效

当你想传递一个调用另一个函数的结果时,会发生同样的情况:

let counter = {
    _current: 0,
    get: function() {
        return this._current++;
    }
}

let map = {
    _items: Object.create(null),
    set: function(key, value, index) {
        this._items[key] = {
            index: index,
            value: value
        }
    }
}

// using anonymous functions the index in most cases won't reflect the real order
setTimeout(function() {
    map.set("one", 1, counter.get());
}, Math.floor(Math.random() * 1500) + 100);
setTimeout(function() {
    map.set("two", 2, counter.get());
}, Math.floor(Math.random() * 1500) + 100);
setTimeout(function() {
    map.set("three", 3, counter.get());
}, Math.floor(Math.random() * 1500) + 100);

// using bind, the index will always be correct
setTimeout(map.set.bind(map, "one", 1, counter.get()), Math.floor(Math.random() * 1500) + 100);
setTimeout(map.set.bind(map, "two", 2, counter.get()), Math.floor(Math.random() * 1500) + 100);
setTimeout(map.set.bind(map, "three", 3, counter.get()), Math.floor(Math.random() * 1500) + 100);

它的工作方式不同的是,绑定counter.get()时会在调用bind函数之前对其进行求值,因此绑定了正确的返回值。
使用匿名函数时,仅在执行函数时才会计算counter.get(),并且调用匿名函数的顺序是不知道的。