_.template无法正常工作 - backbone.js

时间:2013-01-25 01:37:40

标签: javascript jquery backbone.js

尝试使用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);

3 个答案:

答案 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); 
 });