I am new to Mustache, please bear with me :)
I have an array in my JSON
"prop":{"brands":["nike","adidas","puma"]}
if I have the template like this
{{#prop}}
<b>{{brands}}</b>
{{prop}}
and I want to get something like:
<b>nike</b>
<b>adidas</b>
<b>puma</b>
I understand the elements in the array are not hash key-value pairs, however I am wondering if there is anyway in mustache that I can iterate through the elements.
Thanks!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…