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?
私はまだこれに慣れていないので、混乱させてすみません。
ありがとう!