我正在使用mustache.js,将我的页面放在一起,并且在一个事件上我正在捕获一个json对象,我保存在一个变量中,代码看起来像这样:
{
"result": [
{
"first": null,
"second": "something",
"third": "etc"
}, {
"first": null,
"second": "something",
"third": "etc"
}, {
"first": null,
"second": "something",
"third": "etc"
}
]
}
我无法弄清楚在模板上使用哪种胡须结构来显示表格中的数据。看起来这个阵列是不规则的形状,我想把它放到一张桌子里。有任何想法吗? THX。
答案 0 :(得分:0)
数据结构在表格视图中呈现非常正常和方便。相应的Mustache模板可能看起来像这样:
<table>
{{#result}}
<tr>
<td>first: {{first}}</td>
<td>second: {{second}}</td>
<td>third: {{third}}</td>
</tr>
{{/result}}
</table>
查看有关Mustache中collectons的文档。