Here is one object that needs recursion.
Object
var obj = [
{
obj: true,
key: 'a',
value: [
{
obj: false,
key: 'a',
value: 1
},
{
obj: false,
key: 'b',
value: 2
},
{
obj: true,
key: 'c',
value: [
{
obj: false,
key: 'a',
value: 3
}
]
}
]
},
{
obj: false,
key: 'b',
value: 4
}
];
Template (recursion.html).
<!-- root -->
<ul>
{{#value}}
<li>
<!-- object -->
{{#obj}}
<span><b>{{key}}</b></span>
{{>object}}
{{/obj}}
<!-- value -->
{{^obj}}
<span><b>{{key}}</b> <span>{{value}}</span></span>
{{/obj}}
</li>
{{/value}}
</ul>
The first object you pass in is the root it has no key only a value. If the value has a property obj set to true then it's an object, print out its key and call the template again recursively for its value.
If not an object then no need for recursion, simply print out.
Render client side.
// html is recursion.html contents
var template = Hogan.compile(html),
content = template.render({value: obj}, {object: html});
// show the rendered template
$('body').empty().append(content);
Render server side with Express.js
res.render('recursion', {
value: obj,
partials: {
object: 'recursion'
}
});
Output of this example
Btw I'm using Hogan.js for rendering the template. I don't know whether Mustache.js render supports recursion or not.