I am getting a little confused about templating using backbone with jade/underscore.
I have a backbone model with a couple of arrays in it and am not sure how to render the array attributes. I could move them into a separate backbone collection & view but that seem like overkill in this case.
I followed this blog post on using backbone with jade and added the following to my backbone file
_.templateSettings = {
interpolate : /\{\{(.+?)\}\}/g
};
which allows me to render the model attributes in this manor :
//in my JavaScript
this.template = _.template($("#some-template").html());
//in my .jade template
input.text(type='text', name="name", value='{{name}}')
what I want to work out is how to do a simple loop over one of the arrays in the model. e.g.
- for (var child in children)
{{child}}
but im quite confused about the correct syntax, where jade starts and underscore takes over etc. Thank you.