Normally I'd assign an alternative "self" reference when referring to "this" within setInterval. Is it possible to accomplish something similar within the context of a prototype method? The following code errors.

function Foo() {}
Foo.prototype = {
    bar: function () {
        this.baz();
    },
    baz: function () {
        this.draw();
        requestAnimFrame(this.baz);
    }
};
link|improve this question
1  
Does this help? stackoverflow.com/questions/2749244/… – Kevin Hakanson Oct 25 '11 at 14:19
feedback

2 Answers

up vote 3 down vote accepted

Unlike a language like Python a method forgets its a method after you extract it and pass it somewhere. You can either

Wrap the call in an inner function so that the call still looks like a method call

var that = this;
setInterval(function(){
    return that.baz();
}, 1000);

Use a binding function like the Function.prototype.bind (in newer browsers) or one of the variations that are present in most JS frameworks;

setInterval( this.baz.bind(this), 1000 );

//dojo toolkit example:
setInterval( dojo.hitch(this, 'baz'), 100);
link|improve this answer
feedback
requestAnimFrame(function() { this.baz.apply(this); });
link|improve this answer
you need to use that... – missingno Oct 25 '11 at 14:34
feedback

Your Answer

 
or
required, but never shown

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