У нас есть некоторый массив объектов:
data = [
{
'showname-array': [
{'a':..}
{'b':..}
{'c':..}
]
},
{
'andanotherName-array': [
{'a':..}
{'b':..}
{'c':..}
]
},
]
Можно ли с помощью mustache или underscore.js-templates визуализировать имя свойства объекта:
'Showname-массив'
'AndanotherName-массив'
<div> Hello , showing content of: <% showname-array %> </div>
Как это возможно?