在Javascript中,如何在不绑定this
参数的情况下将参数绑定到函数?
例如:
//Example function.
var c = function(a, b, c, callback) {};
//Bind values 1, 2, and 3 to a, b, and c, leave callback unbound.
var b = c.bind(null, 1, 2, 3); //How can I do this without binding scope?
如何避免必须绑定函数范围的副作用(例如设置this
= null)?
修改
很抱歉这个混乱。我想绑定参数,然后能够稍后调用绑定函数并使其行为与我调用原始函数并将其传递给绑定参数完全相同:
var x = 'outside object';
var obj = {
x: 'inside object',
c: function(a, b, c, callback) {
console.log(this.x);
}
};
var b = obj.c.bind(null, 1, 2, 3);
//These should both have exact same output.
obj.c(1, 2, 3, function(){});
b(function(){});
//The following works, but I was hoping there was a better way:
var b = obj.c.bind(obj, 1, 2, 3); //Anyway to make it work without typing obj twice?
我仍然对此感到陌生,对此感到困惑。
谢谢!
答案 0 :(得分:28)
您可以这样做,但最好不要将其视为“绑定”,因为这是用于设置“this”值的术语。或许可以认为它将参数“包装”成函数?
你所做的是通过闭包创建一个具有所需参数的函数:
var withWrappedArguments = function(arg1, arg2)
{
return function() { ... do your stuff with arg1 and arg2 ... };
}(actualArg1Value, actualArg2Value);
希望我能在那里得到语法。它的作用是创建一个名为withWrappedArguments()的函数(迂腐,它是一个分配给变量的匿名函数),你可以随时随地调用它,并且总是使用actualArg1Value和actualArg2Value以及你想要放入的任何其他内容。那里。如果需要,您还可以在通话时接受进一步的参数。秘密是最后一个结束后的括号。这些导致使用传递的值立即执行外部函数,并生成可以在以后调用的内部函数。然后在生成函数时冻结传递的值。
这实际上是绑定的作用,但是这样显然包装的参数只是对局部变量的闭包,并且不需要改变它的行为。
答案 1 :(得分:19)
在ES6中,可以使用rest parameters和spread operator轻松完成此操作。
所以我们可以定义一个与bindArgs
类似的函数bind
,除了只绑定参数,而不绑定上下文(this
)。
Function.prototype.bindArgs =
function (...boundArgs)
{
const targetFunction = this;
return function (...args) { return targetFunction.call(this, ...boundArgs, ...args); };
};
然后,对于指定的函数foo
和对象obj
,语句
return foo.call(obj, 1, 2, 3, 4);
相当于
let bar = foo.bindArgs(1, 2);
return bar.call(obj, 3, 4);
其中只有第一个和第二个参数绑定到bar
,而使用调用中指定的上下文obj
并在绑定参数后追加额外的参数。返回值只是转发。
答案 2 :(得分:16)
在原生bind
method中,结果函数中的this
值将丢失。但是,您可以轻松地重新编码公共垫片,而不是使用上下文的参数:
Function.prototype.arg = function() {
if (typeof this !== "function")
throw new TypeError("Function.prototype.arg needs to be called on a function");
var slice = Array.prototype.slice,
args = slice.call(arguments),
fn = this,
partial = function() {
return fn.apply(this, args.concat(slice.call(arguments)));
// ^^^^
};
partial.prototype = Object.create(this.prototype);
return partial;
};
答案 3 :(得分:7)
另一个小小的实现只是为了好玩:
function bindWithoutThis(cb) {
var bindArgs = Array.prototype.slice.call(arguments, 1);
return function () {
var internalArgs = Array.prototype.slice.call(arguments, 0);
var args = Array.prototype.concat(bindArgs, internalArgs);
return cb.apply(this, args);
};
}
使用方法:
function onWriteEnd(evt) {}
var myPersonalWriteEnd = bindWithoutThis(onWriteEnd, "some", "data");
答案 4 :(得分:4)
var b = function() {
return c(1,2,3);
};
答案 5 :(得分:2)
要确切地告诉你最终想做什么有点难,因为这个例子有点武断,但你可能想看看部分(或者说是currying):http://jsbin.com/ifoqoj/1/edit
Function.prototype.partial = function(){
var fn = this, args = Array.prototype.slice.call(arguments);
return function(){
var arg = 0;
for ( var i = 0; i < args.length && arg < arguments.length; i++ )
if ( args[i] === undefined )
args[i] = arguments[arg++];
return fn.apply(this, args);
};
};
var c = function(a, b, c, callback) {
console.log( a, b, c, callback )
};
var b = c.partial(1, 2, 3, undefined);
b(function(){})
链接到John Resig的文章:http://ejohn.org/blog/partial-functions-in-javascript/
答案 6 :(得分:1)
使用protagonist
!
var geoOpts = {...};
function geoSuccess(user){ // protagonizes for 'user'
return function Success(pos){
if(!pos || !pos.coords || !pos.coords.latitude || !pos.coords.longitude){ throw new Error('Geolocation Error: insufficient data.'); }
var data = {pos.coords: pos.coords, ...};
// now we have a callback we can turn into an object. implementation can use 'this' inside callback
if(user){
user.prototype = data;
user.prototype.watch = watchUser;
thus.User = (new user(data));
console.log('thus.User', thus, thus.User);
}
}
}
function geoError(errorCallback){ // protagonizes for 'errorCallback'
return function(err){
console.log('@DECLINED', err);
errorCallback && errorCallback(err);
}
}
function getUserPos(user, error, opts){
nav.geo.getPos(geoSuccess(user), geoError(error), opts || geoOpts);
}
基本上,你想要传递params的函数成为一个代理,你可以调用它来传递一个变量,然后它返回你真正想做的东西。
希望这有帮助!
答案 7 :(得分:1)
匿名用户发布了此附加信息:
基于本文中已经提供的内容 - 我见过的最优雅的解决方案是 Curry 你的论点和背景:
function Class(a, b, c, d){
console.log('@Class #this', this, a, b, c, d);
}
function Context(name){
console.log('@Context', this, name);
this.name = name;
}
var context1 = new Context('One');
var context2 = new Context('Two');
function curryArguments(fn) {
var args = Array.prototype.slice.call(arguments, 1);
return function bindContext() {
var additional = Array.prototype.slice.call(arguments, 0);
return fn.apply(this, args.concat(additional));
};
}
var bindContext = curryArguments(Class, 'A', 'B');
bindContext.apply(context1, ['C', 'D']);
bindContext.apply(context2, ['Y', 'Z']);
答案 8 :(得分:1)
对于你给出的例子,这样做
var b= function(callback){
return obj.c(1,2,3, callback);
};
如果你想保护参数的封闭:
var b= (function(p1,p2,p3, obj){
var c=obj.c;
return function(callback){
return c.call(obj,p1,p2,p3, callback);
}
})(1,2,3,obj)
但如果是这样,你应该坚持你的解决方案:
var b = obj.c.bind(obj, 1, 2, 3);
这是更好的方式。
答案 9 :(得分:1)
var b = (cb) => obj.c(1,2,3, cb)
b(function(){}) // insidde object
更一般的解决方案:
function original(a, b, c) { console.log(a, b, c) }
let tied = (...args) => original(1, 2, ...args)
original(1,2,3) // 1 2 3
tied(5,6,7) // 1 2 5
答案 10 :(得分:1)
使用 LoDash ,您可以使用_.partial
功能。
const f = function (a, b, c, callback) {}
const pf = _.partial(f, 1, 2, 3) // f has first 3 arguments bound.
pf(function () {}) // callback.
答案 11 :(得分:1)
也许您想最后绑定 this 的引用,但您的代码:-
var c = function(a, b, c, callback) {};
var b = c.bind(null, 1, 2, 3);
已经为实例 this 应用了绑定,以后您将无法更改它。 我将建议使用reference也是这样的参数:-
var c = function(a, b, c, callback, ref) {
var self = this ? this : ref;
// Now you can use self just like this in your code
};
var b = c.bind(null, 1, 2, 3),
newRef = this, // or ref whatever you want to apply inside function c()
d = c.bind(callback, newRef);
答案 12 :(得分:0)
为什么不在函数周围使用包装器将其保存为mythis?
function mythis() {
this.name = "mythis";
mythis = this;
function c(a, b) {
this.name = "original";
alert('a=' + a + ' b =' + b + 'this = ' + this.name + ' mythis = ' + mythis.name);
return "ok";
}
return {
c: c
}
};
var retval = mythis().c(0, 1);
答案 13 :(得分:0)
我正在使用这个功能:
function bindArgs(func, ...boundArgs) {
return function (...args) {
return func(...boundArgs, ...args);
};
}
// use
const deleteGroup = bindArgs(this.props.deleteGroup, "gorupName1");
答案 14 :(得分:-1)
jQuery 1.9 brought exactly that feature with the proxy function.
从jQuery 1.9开始,当上下文为null或未定义时,将使用与调用代理相同的此对象调用代理函数。这允许$ .proxy()用于部分应用函数的参数而不更改上下文。
示例:
$.proxy(this.myFunction,
undefined /* leaving the context empty */,
[precededArg1, precededArg2]);
答案 15 :(得分:-5)
Jquery用例:
代替:
for(var i = 0;i<3;i++){
$('<input>').appendTo('body').click(function(i){
$(this).val(i); // wont work, because 'this' becomes 'i'
}.bind(i));
}
使用它:
for(var i = 0;i<3;i++){
$('<input>').appendTo('body').click(function(e){
var i = this;
$(e.originalEvent.target).val(i);
}.bind(i));
}