玉傢伙,所以我有密鑰對值的這陣我用我的模型,該模型:
循環中下劃線JS模板
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>
有什麼毛病我的看法和循環,我相信。任何線索? 謝謝!
http://stackoverflow.com/questions/4778881/how-to-use-underscore-js-as-a-template-engine也有相當多的解決方案。 – Pramod 2012-12-16 17:26:18