わかりましたので、モデルとして使用しているキーペア値のこの配列があります:
var acs = [{'label':'input box'},{'label':'text area'}];
コードの残りの部分は次のようになります
var Action = Backbone.Model.extend({});
var action = new Action(acs);
var ActionView = Backbone.View.extend({
tagName:"li",
template: _.template($('#actions-template').html()),
events:{
"click":"makeInput"
},
render:function(){
$(this.el).html(this.template(this.model.toJSON()));
$(".hero-unit>ul").append(this.el);
return this;
},
makeInput:function(){
alert("im in");
}
});
var actionView = new ActionView({model:action});
actionView.render();
質問はビューに関するものです。これが必要なビューである場合、渡すモデルをループするにはどうすればよいですか
<script type="text/template" id="actions-template">
<% _.each(action, function(acs) { %>
<a class="btn"><%= label %></a>
<% }); %>
</script>
私の見解と私が信じているループには何か問題があります。手がかりはありますか?ありがとう!