我正在尝试从 JS 渲染一个小胡子模板(details.mustache)。但是 mustache.to_html 的输出多次显示带有数据的相同模板。这个例子:
function onViewSectionSuccess(param){
var template = $('#section_detail_template').html();
var hashDetail = {
'first' :[{'id' : param.data.id},{'description':param.data.description},{'title':param.data.title},{'icon':param.data.icon},{'created':param.data.created},{'updated':param.data.updated},{'native':param.data.native}]
};
var html = Mustache.to_html(template,hashDetail);
$('#section_detail_view').html(html);
}
有什么建议吗?