I have model:
[
{
"ID": 5,
"email": "[email protected]"
},
{
"ID": 6495,
"email": "[email protected]"
}
]
Code for iterating in handlebars:
{{#each xxx}}
<p>{{email}}</p>
{{/each}}
how do I define xxx ?
If JSON had name in model like:
users: [
{
"ID": 5,
"email": "[email protected]"
},
{
"ID": 6495,
"email": "[email protected]"
}
]
I would simple iterate in handlebars like:
{{#each users}}
<p>{{email}}</p>
{{/each}}