Lodash - bind 方法



语法

_.bind(func, thisArg, [partials])

创建一个函数,该函数调用 func,其中 thisArg 绑定和 partials 作为收到的参数的前缀。

参数

  • func (函数) − 要绑定的函数。

  • thisArg (*) − func 的 this 绑定。

  • [partials] (...*) − 要部分应用的参数。

输出

  • (函数) − 返回新的绑定函数。

示例

var _ = require('lodash');
var updateMessage = function(message) {
   return this.name + ' : ' + message;
}

//Bind this with object provided
updateMessage = _.bind(updateMessage, {name: 'BinderObject'}, "Welcome");
var result = updateMessage();
console.log(result);

将上述程序保存在 tester.js 中。运行以下命令来执行此程序。

命令

\>node tester.js

输出

BinderObject : Welcome
lodash_function.htm
广告