オブジェクトの配列がいくつかあります。
data = [
{
'showname-array': [
{'a':..}
{'b':..}
{'c':..}
]
},
{
'andanotherName-array': [
{'a':..}
{'b':..}
{'c':..}
]
},
]
mustacheまたはunderscore.js-templatesでオブジェクトのプロパティの名前をレンダリングすることは可能ですか:'showname-array''andanotherName-array'
<div> Hello , showing content of: <% showname-array %> </div>
どうしてそれは可能ですか?