My object looks like this:

['foo','bar','baz']

And I want to use a mustache template to produce from it something like this:

"<ul><li>foo</li><li>bar</li><li>baz</li></ul>"

But how? Do I really have to munge it into something like this first?

{list:['foo','bar','baz']}
link|improve this question

43% accept rate
feedback

5 Answers

up vote 1 down vote accepted

AFAIK you need to convert it to {list:['foo','bar','baz']}. That's how to do it in javascript. Suppose your object list called foolist.

foolist = ['foo','bar','baz'];
var mustache_magic_list = new Object();
mustache_magic_list.list = foolist;

Now, you can use mustache_magic_list instead of foolist in the mustache processing.

link|improve this answer
5  
You do not need to do this. By using {{.}} you can just use the array. See the answer by Andy Hull – Kevin Feb 24 at 21:52
I agree with you that Andy's answer is more appropriate, that's why upvote for you comment. That answer is better don't mean my answer is wrong. Moreover, Andy's answer came after 6 months of mine. why negative vote for me? – Gagandeep Singh Mar 2 at 6:16
1  
Actually your answer is wrong. You state you need to convert it, but you don't need to do that, as Andy's answer shows. – Kevin Mar 2 at 7:20
Fair enough. If it is wrong than I think I need to delete this answer. what's your opinion? – Gagandeep Singh Mar 2 at 8:48
Sorry, I tried but got this 'you can't delete this accepted answer'. :( – Gagandeep Singh Mar 2 at 17:06
feedback

I had the same problem this morning and after a little experimentation I discovered you can use the {{.}} to refer to the current element of an array:

<ul>
  {{#yourList}}
  <li>{{.}}</li>
  {{/yourList}}
</ul>

link|improve this answer
Where does the name of the #yourList variable come from? can you show a javascript sample of the actual rendering? – iwein Apr 15 at 11:43
you don't even need to use "yourList", you can just use "." here too: Mustache.render('<ul>{{#.}}<li>{{.}}</li>{{/.}}</ul>',['foo','bar','baz']); – Kai Carver May 5 at 11:34
The JavaScript would be Mustache.render('<ul>{{#.}}{{.}}{{/.}}</ul>', {yourList: ['foo','bar','baz']}); – danjordan May 22 at 15:54
feedback

You can do it like this...

Mustache.render('<ul>{{#.}}{{.}}{{/.}}</ul>', ['foo','bar','baz']);

It also works for things like this...

var obj = [{name: 'foo'}, {name: 'bar'}];
var tmp = '<ul>{{#.}}{{name}}{{/.}}</ul>';
Mustache.render(tmp, obj);
link|improve this answer
2  
+1 this is the correct answer. – SalmanPK Apr 28 at 16:03
1  
actually the template comes first: Mustache.render('<ul>{{#.}}<li>{{.}}</li>{{/.}}</ul>',['foo','bar','baz']); – Kai Carver May 4 at 12:06
feedback

I don't think mustache can do this! (surprisingly) You can iterate over a list of objects, and then access the attributes of each object, but you can't seem to iterate over a simple list of values!

So, you have to transform your list into:

[ {"value":"foo"},{"value":"bar"},{"value":"baz"} ] 

and then your template would be:

<ul>
  {{#the_list}}
  <li>{{value}}</li>
  {{/the_list}}
</ul>

To me, this seems like a severe problem with Mustache -- any template system should be able to loop over a list of simple values!

link|improve this answer
You just need to use {{.}}. See my answer below. – Andy Hull Dec 2 '11 at 17:50
feedback

Building on @danjordan's answer, this will do what you want:

Mustache.render('<ul>{{#.}}<li>{{.}}</li>{{/.}}</ul>',['foo','bar','baz']);

returning:

<ul><li>foo</li><li>bar</li><li>baz</li></ul>
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.