Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

https://github.com/marionettejs/backbone.marionette/blob/master/docs/marionette.view.md

In this example:

<script id="my-template" type="text/html">
  I think that <%= showMessage() %>
</script> 

MyView = Backbone.Marionette.ItemView.extend({
  template: "#my-template",

  templateHelpers: {
    showMessage: function(){
      return this.name + " is the coolest!"
    }
  }

});

model = new Backbone.Model({name: "Backbone.Marionette"});
view = new MyView();
view.render(); //=> "I think that Backbone.Marionette is the coolest!";

I've tried analyzing this code and based on my understanding of Backbone, you have to specify which model the view is associated with. I tried understanding Marionette views and I don't know which part of the docs or in this example shows how the view knew that this refers to the newly created model. Or is this just a typo?

share|improve this question

1 Answer

up vote 0 down vote accepted

There's an error in that example. It should show this:


model = new Backbone.Model({name: "Backbone.Marionette"});

view = new MyView({
  model: model
});

view.render(); //=> "I think that Backbone.Marionette is the coolest!";

I'll update the docs to fix this

share|improve this answer
ah i was hoping it was that. if it wasn't i'd be really confused. thanks for the quick reply! – corroded Jun 25 '12 at 14:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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