vote up 3 vote down star
3

Using instance methods as callbacks for event handlers changes the scope of this from "My instance" to "Whatever just called the callback". So my code looks like this

function MyObject() {
  this.doSomething = function() {
    ...
  }

  var self = this
  $('#foobar').bind('click', function(){
    self.doSomethng()
    // this.doSomething() would not work here
  })
}

It works, but is that the best way to do it? It looks strange to me.

flag

6 Answers

vote up 9 vote down check

This question is not specific to jQuery, but specific to JavaScript in general. The core problem is how to "channel" a variable in embedded functions. This is the example:

var abc = 1; // we want to use this variable in embedded functions

function xyz(){
  console.log(abc); // it is available here!
  function qwe(){
    console.log(abc); // it is available here too!
  }
  ...
};

This technique relies on using a closure. But it doesn't work with this because this is a pseudo variable that may change from scope to scope dynamically:

// we want to use "this" variable in embedded functions

function xyz(){
  // "this" is different here!
  console.log(this); // not want we wanted!
  function qwe(){
    // "this" is different here too!
    console.log(this); // not what we wanted!
  }
  ...
};

What can we do? Assign it to some variable and use it through the alias:

var abc = this; // we want to use this variable in embedded functions

function xyz(){
  // "this" is different here! --- but we don't care!
  console.log(abc); // now it is the right object!
  function qwe(){
    // "this" is different here too! --- but we don't care!
    console.log(abc); // it is right object here too!
  }
  ...
};

this is not unique in this respect: arguments is the other pseudo variable that should be treated the same way — by aliasing.

link|flag
vote up 2 vote down

A good article which explains those little issues in javascript is this one:

http://www.alistapart.com/articles/getoutbindingsituations

Hope this helps.

link|flag
vote up -1 vote down

yep, it's quite a lifesaver (or better, a 'sanitysaver'). of course, i got downvoted for claiming that it's one of the blunders of bad language design in JS

link|flag
I can't believe you thought you could knock the language design of JS and get away with it :oP JS coders are fanatics. – BenAlabaster Dec 3 '08 at 20:27
as seen on some lists: "JavaScript is Scheme done wrong" – Javier Dec 3 '08 at 22:51
vote up 1 vote down

I haven't used jQuery, but in a library like Prototype you can bind functions to a specific scope. So with that in mind your code would look like this:

 $('#foobar').ready('click', this.doSomething.bind(this));

The bind method returns a new function that calls the original method with the scope you have specified.

link|flag
vote up 3 vote down

Yeah, this appears to be a common standard. Some coders use self, others use me. It's used as a reference back to the "real" object as opposed to the event.

It's something that took me a little while to really get, it does look odd at first.

I usually do this right at the top of my object (excuse my demo code - it's more conceptual than anything else and isn't a lesson on excellent coding technique):

function MyObject(){
  var me = this;

  //Events
  Click = onClick; //Allows user to override onClick event with their own

  //Event Handlers
  onClick = function(args){
    me.MyProperty = args; //Reference me, referencing this refers to onClick
    ...
    //Do other stuff
  }
}
link|flag
vote up 0 vote down

I think it's actually depends on what are you going to do inside your doDomething function. If you going to access MyObject properties using this keyword then you have to use that. But I think that following code fragment will also work if you are not doing any special things using object(MyObject) properties.

function doSomething(){ ......... }

$("#foobar").ready('click', function(){

});

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.