Underscore.js Function bind 方法

返回 Underscore.js 函数


语法

_.bind(function, object, *arguments)

bind() 方法有助于用传递的对象的引用替换函数中 this 的出现。 请参阅下面的示例

示例

var _ = require('underscore');

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

// 将此与提供的对象绑定
updateMessage = _.bind(updateMessage, {name: 'BinderObject'}, "Welcome");
var result = updateMessage();
console.log(result);

上面示例运行结果如下

Underscore.js  function bind 方法运行结果


返回 Underscore.js 函数

查看笔记

扫码一下
查看教程更方便