バックボーンを使用しており、ビューで最初のコレクションを解析したいと考えています。
私の最初の質問は、undescore
本当にそれを行うための最良の方法ですか? 私は聞いたことがありますmustache.js
次のことは、どうすればいいのかわからないということです:
var A = new Model();
var B = new Model();
var Mole = new Collection([A, B]);
var View = View({model: A, collection: Mole });
View.render();
これが私のレンダリング方法です:
render: function(){
this.template = _.template($('template').html());
$(this.el).html(this.template(this.collection.models)); //I don't know what to send here
}
これが私のテンプレートです
<script type="text/template" id="template">
<% _.each(collection, function(model){ %> //I don't know what to get here
<% model.name %>
<% }); %>
</script>