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);
}
なにか提案を?