Backbonejs に単純な追加イベントがあり、テンプレートもあります。
initialize: function()
{
this.template = _.template($("#person-template").html());
}
renderperson: function(model)
{
//model.name is "Jack" for example
//Now I want to render this template with Name replaced with "Jack"?
$("#somelement").append( ); //What to do here???
}
テンプレートは単純です:
<script type="text/template" id="person-template">
<div class="person"><%= Name %></div>
</script>