142

我对 Javascript 有很好的理解,除了我想不出一种设置“this”变量的好方法。考虑:

var myFunction = function(){
    alert(this.foo_variable);
}

var someObj = document.body; //using body as example object
someObj.foo_variable = "hi"; //set foo_variable so it alerts

var old_fn = someObj.fn;   //store old value
someObj.fn = myFunction;   //bind to someObj so "this" keyword works
someObj.fn();              
someObj.fn = old_fn;       //restore old value

如果没有最后 4 行,有没有办法做到这一点?这很烦人......我尝试绑定一个匿名函数,我认为它既漂亮又聪明,但无济于事:

var myFunction = function(){
    alert(this.foo_variable);
}

var someObj = document.body;        //using body as example object
someObj.foo_variable = "hi";        //set foo_variable so it alerts
someObj.(function(){ fn(); })();    //fail.

显然,将变量传递给 myFunction 是一种选择......但这不是这个问题的重点。

谢谢。

4

5 回答 5

228

JavaScript 中为所有函数定义了两种方法call(), 和apply()。函数语法如下所示:

call( /* object */, /* arguments... */ );
apply(/* object */, /* arguments[] */);

这些函数所做的是调用它们被调用的函数,将对象参数的值分配给this

var myFunction = function(){
    alert(this.foo_variable);
}
myFunction.call( document.body );
于 2009-01-19T09:20:33.577 回答
58

我想你正在寻找call

myFunction.call(obj, arg1, arg2, ...);

这调用myFunction设置thisobj

还有一种稍有不同的方法apply,它将函数参数作为一个数组:

myFunction.apply(obj, [arg1, arg2, ...]);
于 2009-01-19T09:19:05.013 回答
19

如果您想将this值“存储”到函数中以便以后可以无缝调用它(例如,当您不再有权访问该值时),您可以bind这样做(但并非在所有浏览器中都可用):

var bound = func.bind(someThisValue);

// ... later on, where someThisValue is not available anymore

bound(); // will call with someThisValue as 'this'
于 2011-07-08T18:57:41.243 回答
1

我对如何绑定的搜索this把我带到了这里,所以我发布了我的发现:在“ECMAScript 2015”中,我们还可以使用箭头函数将其设置为词法。

请参阅:https ://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Functions/Arrow_functions

代替:

function Person() {
  setInterval(function growUp() {
    // The callback refers to the `self` variable of which
    // the value is the expected object.
    this.age++;
  }.bind(this), 1000);
}

我们现在可以这样做:

function Person(){
  this.age = 0;

  setInterval(() => {
    this.age++; // |this| properly refers to the person object
  }, 1000);
}

var p = new Person();
于 2016-10-14T06:32:06.310 回答
1

在javascript中设置this关键字。

Javascript 有 3 种内置方法可以this方便地设置关键字。它们都位于Function.prototype对象上,因此每个函数都可以使用它们(因为每个函数都通过原型继承从这个原型继承)。这些功能如下:

  1. Function.prototype.call():此函数将您要使用的对象this作为第一个参数。然后其余的参数是被调用函数的各自参数。
  2. Function.prototype.apply():此函数将您要使用的对象this作为第一个参数。然后第二个参数是一个数组,其中包含被调用函数的参数值(数组的第一个元素是函数的第一个参数,数组的第二个参数是函数的第二个参数等)。
  3. Function.prototype.bind(): 这个函数返回一个新函数,它的值不同this。它将您要设置为this值的对象作为第一个参数,然后返回一个新的函数对象。

调用/应用和绑定之间的区别:

  • call并且apply相似之处在于它们立即调用函数(具有预定义的值this
  • bindcall与此函数不同apply的是,此函数返回一个具有不同值绑定的新函数this

例子:

const thisObj = {
  prop1: 1,
  prop2: 2,
};

function myFunc(arg1, arg2) {
  console.log(this.prop1, this.prop2);
  console.log(arg1, arg2);
}

// first arg this obj, other arguments are the  
// respective arguments of the function
myFunc.call(thisObj, 'Call_arg1', 'Call_arg2');

// first arg this obj, other argument is an array which  
// are the respective arguments of the function
myFunc.apply(thisObj, ['Apply_arg1', 'Apply_arg2']);


// the bind method returns a new function with a different
// this context which is stored in the newMyFunc variable
const newMyFunc = myFunc.bind(thisObj);

// now we can call the function like a normal function 
newMyFunc('first', 'second');

于 2018-12-07T13:30:42.507 回答