In the following demo: http://documentcloud.github.com/backbone/examples/todos/index.html

the code has a few spots where _.bindAll(this,...) is used. Specifically it's used in the initialize function of both views. As far as I can tell it's necessary to do the following:

this.$('.todo-content').text(content);

But why would one one to do the above, when when can do:

$('.todo-content').text(content);

?

link|improve this question

feedback

3 Answers

up vote 22 down vote accepted

this.$ limits jQuery's context to the view's element, so operations are quicker.

Additionaly, this.$('.todo-item') won't find you elements with todo-item class outside your view's element.

link|improve this answer
feedback

_.bindAll( this, ... ) is necessary not only for this.$( selector ).doSomething() but generally to be sure that this in your view's method is always pointing to the view itself.

For example, we want to refresh our view when the model changes, so we bind view's render method to the model's change event:

initialize: function() {
    this.model.bind( 'change', this.render );
},

Without _.bindAll( this, 'render' ) when model changes this in render will be pointing to the model, not to the view, so we won't have neither this.el nor this.$ or any other view's properties available.

link|improve this answer
feedback

As of Backbone 0.5.2, it's no longer necessary to use _.bindAll(this...) in your views to set the context of the "bind" callback functions, as you can now pass a 3rd argument to bind() that will set the context (i.e. "this") of the callback.

For example:

var MyView = Backbone.View.extend({
  initialize: function(){
    this.model.bind('change', this.render, this);
  },
  render: function(){
    // "this" is correctly set to the instance of MyView
  }
});
link|improve this answer
7  
The line "this.model.bind('change', this.render, this)" just makes my head spin >.< – pat Aug 26 '11 at 8:11
1  
Try coffeescript and its => operator. – dira Oct 24 '11 at 15:48
Do notice that this.bind (or this.model.bind) do a completely different thing than _.bind. Took me a while to realize. – Jonatan Littke Feb 24 at 12:20
feedback

Your Answer

 
or
required, but never shown

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