I’m using handlebar js for templating. If i want the handlebar to generate dom content only for keys 2,3 or 1,2,3 from the json data how can i do it ?
JSON structure
{
"items": {
"1": {
"title": "Title1",
"date": "2/16/2012"
},
"2": {
"title": "Title2",
"date": "2/16/2012"
},
"3": {
"title": "Title3",
"date": "2/16/2012"
},
"4": {
"title": "Title4",
"date": "2/16/2012"
}
}
}
HTML should have data as shown below
<li> data of item2 </li>
<li> data of item3 </li>
Any help ?
For your problem, this
Should work 🙂