Iterating over basic “for” loop using Handlebars.js
问题 I’m new to Handlebars.js and just started using it. Most of the examples are based on iterating over an object. I wanted to know how to use handlebars in basic for loop. Example. for(i=0 ; i<100 ; i++) { create li\'s with i as the value } How can this be achieved? 回答1: There's nothing in Handlebars for this but you can add your own helpers easily enough. If you just wanted to do something n times then: Handlebars.registerHelper('times', function(n, block) { var accum = ''; for(var i = 0; i <