尝试使用Backbone.js从View via模板输出一些值,但是列表项没有显示在网页上,请查看并告知缺少的内容。谢谢
<script type="text/template" id="myid">
<li> <%= value %> </li>
</script>
<script type="text/javascript">
(function($){
ListView = Backbone.View.extend({
tagName:'ul',
initialize:function(){
this.template = _.template($('#myid').html());
},
render:function(){
this.$el.append(this.template({value:"Joe Blogg"}));
return this;
}
});
$(document).ready(function(e) {
myListView = new ListView();
});
})(jQuery);
答案 0 :(得分:4)
请试一试。
(function($){
var ListView = Backbone.View.extend({
tagName:'ul',
$el: $(this.tagName),
initialize:function(){
this.template = _.template($('#myid').html());
},
render:function(){
this.$el.append(this.template({value:"Joe Blogg"}));
$('body').append(this.$el);
}
});
$(document).ready(function(e) {
var myListView = new ListView(); // call initialize()
myListView.render(); // call render()
});
})(jQuery);
我使用jQuery.js和Underscore.js以及Backbone.js。
始终使用“var”。
答案 1 :(得分:1)
试试这个
this.$el.empty();
this.$el.html(this.template(this.model.attributes));
在 DOM ready 事件中调用.render()
方法
$(document).ready(function(e) {
myListView = new ListView();
myListView.render();
});
答案 2 :(得分:0)
您需要致电render
然后将视图的el
实际添加到页面某处。
$(document).ready(function(e) {
var myListView = new ListView();
$("body").append(myListView.render().el);
});