I am using Mustache and using the data

{ "names": [ {"name":"John"}, {"name":"Mary"} ] }

My mustache template is:

{{#names}}
    {{name}}
{{/names}}

What I want to be able to do is to get an index of the current number in the array. Something like:

{{#names}}
    {{name}} is {{index}}
{{/names}}

and have it print out

John is 1
Mary is 2

Is it possible to get this with Mustache? or with Handlebars or another extension?

link|improve this question

71% accept rate
feedback

4 Answers

up vote 0 down vote accepted

If you can control the output of the JSON string, then try this out.

{ "names": [ {"name":"John", "index":"1"}, {"name":"Mary", "index":"2"} ] }

So when you make your JSON string, add the index as another property for each object.

link|improve this answer
Is there anyway to do it without having to add in the index property to the data? The data I'm getting doesn't have it in there, and I take a subset of it. I was hoping to get an index for free. – christophercotton Feb 16 '11 at 20:51
There doesn't seem to be, unfortunately. You could try iterating over it in your JS before you run the templating, and adding indexes then. Or take a look at the source and see if you can add something to return the current index. – sciritai Feb 16 '11 at 21:01
Ok, I'll leave this open for a couple of days to see if there is any other solution. Otherwise I'll mark this one as correct. – christophercotton Feb 16 '11 at 21:08
feedback

In handlebars.js you can accomplish this with a helper function. (In fact, one of the advantages mentioned about handlebars here http://yehudakatz.com/2010/09/09/announcing-handlebars-js/ is that you can use helpers instead of having to rewrite the objects before calling the template.

So, you could do this:

  var nameIndex = 0;
  Handlebars.registerHelper('name_with_index', function() {
    nameIndex++;
    return this.name + " is " + nameIndex;
  })

And, then your template can be this:

{{#names}}
<li>{{name_with_index}}</li>
{{/names}}

Your data is the same as before, i.e.:

{ "names": [ {"name":"John"}, {"name":"Mary"} ] };

And you get this output:

<li>John is 1</li>
<li>Mary is 2</li>

To make this really work, nameIndex needs to get reset each time the template is rendered, so to do that you can have a reset helper at the beginning of the list. So full code looks like this:

  var data = { "names": [ {"name":"John"}, {"name":"Mary"} ] };
  var templateSource = "<ul>{{reset_index}}{{#names}}<li>{{name_with_index}}</li>{{/names}}</ul>";
  var template = Handlebars.compile(templateSource);

  var helpers = function() {
    var nameIndex = 0;
    Handlebars.registerHelper('name_with_index', function() {
      nameIndex++;
      return this.name + " is " + nameIndex;
    });
    Handlebars.registerHelper('reset_index', function() {
      nameIndex = 0;
    })
  }();

  var htmlResult= template(data);
  $('#target').html(htmlResult);

  var htmlResult2= template(data);
  $('#target2').html(htmlResult2);

(This can correctly render the template twice.)

link|improve this answer
That could work, though it has the problem that you cannot use the index in more than one place during the item. Since each time you retrieve the index you increment it. This doesn't work well for template designers and will cause bugs and problems. Also, having the "reset_index" adds in a logic method to reset the index, which I believe goes again the logicless templates. I have seen in the Android version they have available {{-index}} which does the correct thing. – christophercotton Apr 4 '11 at 18:50
feedback

Great helper here:

https://gist.github.com/1048968

link|improve this answer
1  
thanks, this one worked but i extended it a bit for my use case gist.github.com/1429324 – Chad Scira Dec 4 '11 at 5:58
thanks. simple implementation of an expando index property. am using it. – John Dhom May 16 at 21:20
feedback

This is how I do it in JavaScript:

var idx = 0;

var data = { 
   "names": [ 
       {"name":"John"}, 
       {"name":"Mary"} 
    ],
    "idx": function() {
        return idx++;
    }
};

var html = Mustache.render(template, data);

Your template:

{{#names}}
    {{name}} is {{idx}}
{{/names}}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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