I am using Express JS and Hogan JS template engine. I know hogan is logic less template but I need to execute a for loop in view code to generate table fields.
I have done lots of googling but I did not found any solution. I know how to do if-else in Hogan JS.
I read all the documentation in Hogan JS and Mustache JS websites.
I am getting values in the json format.
[
    {
        "email": "abc@example.com",
        "name": "abc",
        "date": "05/01/2015"
    },
    {
        "email": "xyz@example.com",
        "name": "xyz",
        "date": "05/01/2015"
    }
]
this is sample json, there may be any amount of data. To show this data in table in view I need to iterate a loop. So I need a code for for-loop.
You can certainly do that.
Assign the data into a nested JSON object and them compile template for parent key.
var data = {"list" : [
   {
       "email": "abc@example.com",
       "name": "abc",
       "date": "05/01/2015"
   },
   {
       "email": "xyz@example.com",
       "name": "xyz",
       "date": "05/01/2015"
   }
]};  
var template = Hogan.compile("{{#list}} Your name is {{name}} and email is {{email}} <br/>{{/list}}"); 
var output = template.render(data); 
Here is the working example
来源:https://stackoverflow.com/questions/29998595/for-loop-in-hogan-js-template