轻松设置“this”变量?

时间:2009-01-19 09:09:08

标签: javascript variables scope this

我对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是一个选项......但这不是这个问题的重点。

感谢。

5 个答案:

答案 0 :(得分:216)

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

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

这些函数的作用是调用它们被调用的函数,将 object 参数的值赋给 this

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

答案 1 :(得分:54)

我认为您正在寻找call

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

这会调用myFunctionthis设置为obj

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

myFunction.apply(obj, [arg1, arg2, ...]);

答案 2 :(得分:18)

如果您想将this值'存储'到某个函数中,以便以后可以无缝调用它(例如,当您无法访问该值时),您可以bind它(虽然并非在所有浏览器中都可用):

var bound = func.bind(someThisValue);

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

bound(); // will call with someThisValue as 'this'

答案 3 :(得分:0)

我对如何绑定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();

答案 4 :(得分:0)

在javascript中设置this关键字。

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

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

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

  • callapply相似,因为它们立即调用该功能(预定义值为this
  • bindcallapply的不同之处在于,此功能返回了新功能,且其绑定的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');