0
我們有某些對象數組:如何在JS的模板引擎輸出對象的參數名稱(小鬍子,下劃線)
data = [
{
'showname-array': [
{'a':..}
{'b':..}
{'c':..}
]
},
{
'andanotherName-array': [
{'a':..}
{'b':..}
{'c':..}
]
},
]
是否有可能與鬍鬚或underscore.js模板來渲染對象的屬性的名稱: 'showname陣' 'andanotherName陣'
<div> Hello , showing content of: <% showname-array %> </div>
這怎麼可能?