Reputation: 139
I would like to be able to do below with Handlebars.js. Is this possible?
{{#if data}}
{{#each data}}
do something here
{{/each}}
{{/else}
No data, sorry!
{/if}
Upvotes: 3
Views: 4232
Reputation: 1444
Of course, check here: http://jsfiddle.net/PXQUA/
And you have few typos in your template:
{{#if data}}
{{#each data}}
{{this}}
{{/each}}
{{else}}
No data, sorry!
{{/if}}
Upvotes: 3