轻松设置“此”变量?


139

除了无法找到设置“ this”变量的好方法之外,我对Javascript有很好的理解。考虑:

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

没有最后四行,有没有办法做到这一点?这很烦人……我试图绑定一个匿名函数,我认为它是美丽而聪明的,但无济于事:

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

谢谢。

Answers:


221

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

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

这些函数的作用是调用对其调用的函数,并将object参数的值分配给this

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

3
另外,如果您使用的是jQuery,则可以使用$.proxy(function, element)以便每次调用该函数时,它将在element的上下文中。api.jquery.com/jquery.proxy
Trevin Avery

另一种有用的方法是.bind()
Soroush Falahati


18

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

var bound = func.bind(someThisValue);

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

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

7
FYI bind显然在IE9 +,FF4 +,Safari 5.1.4+和Chrome 7+ (源)中可用。您还可以直接在匿名函数上调用bind:var myFunction = function(){ /* this = something */ }.bind(something);
亚当

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();

0

this在javascript中设置关键字。

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

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

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

  • call并且apply在它们立即调用函数(具有的预定义值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');

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.