骨干和下划线 - 模板化简单视图

时间:2013-04-14 13:48:08

标签: javascript templates dom backbone.js underscore.js

我在Backbone和下划线中的第一个模板化视图并没有太多运气。

我从Underscore库中得到'玩家未定义错误'。

这是我的模特:

define([
    'domLib',
    'underscore',
    'backbone',
    'router'
    ],
    function($, _, Backbone, Router) {

        var PlayerModel = Backbone.Model.extend({
            defaults: {
                username: '',
                rank: 0,
                score: 0
            }
        });

        return PlayerModel;

});

这是我的收藏:

define([
    'domLib',
    'underscore',
    'backbone',
    'router',
    'model/player'
    ],
    function($, _, Backbone, Router, PlayerModel) {

        var LeaderboardCollection = Backbone.Collection.extend({
            model: PlayerModel,
            url: '/hyc-web/leaderBoard/topOverall?count=5'
        });

        return LeaderboardCollection;
});

相关视图:

define([
    'domLib',
    'underscore',
    'backbone',
    'router',
    'collection/leaderboard',
    'text!template/leaderboard.html'
    ],
    function($, _, Backbone, Router, LeaderboardCollection, LeaderboardTemplate) {

        var LeaderboardView = Backbone.View.extend({
            el: '#leaderboard',
            template: _.template(LeaderboardTemplate),
            initialize: function(){
                this.collection = new LeaderboardCollection();              
                this.collection.on('reset', this.render, this); 
                this.collection.fetch();                                        
            },
            render: function(){         
                console.log(this.collection.models);
                this.$el.html(this.template, {players: this.collection.models});
            }
        });

        return LeaderboardView;
});

模板本身:

<table class="table table-bordered">
    <thead>                             
        <tr>
            <td>Rank</td>
            <td>Player</td>
            <td>Score</td>
        </tr>
    </thead>
    <tfoot>
        <!-- Logged in user details here -->
    </tfoot>
    <tbody>
        <% _.each(players, function(player){ %>
            <tr>
                <td><%= player.rank %></td>
                <td><%= player.username %></td>
                <td><%= player.highScore %></td>
            </tr>           
        <% }); %>                                   
    </tbody>
</table>

直到我尝试连接到实际的数据服务层,这一切都进展顺利。我不明白为什么这不是模仿JSON数组?

2 个答案:

答案 0 :(得分:3)

您可能希望渲染方法看起来更像:

render: function() {
  this.$el.html(this.template({ players: this.collection.toJSON() });
}

您需要通过视图的template()函数传递数据上下文,而不是jQuery html()函数。此外,您希望使用collection.toJSON()将集合转换为JSON,而不是使用collection.models传入原始数组模型。

答案 1 :(得分:0)

在对文档进行了一些挖掘后,我想出了这个:

define([
    'domLib',
    'underscore',
    'backbone',
    'router',
    'collection/leaderboard',
    'text!template/leaderboard.html'
    ],
    function($, _, Backbone, Router, LeaderboardCollection, LeaderboardTemplate) {

        var LeaderboardView = Backbone.View.extend({
            el: '#leaderboard',
            template: _.template(LeaderboardTemplate),
            initialize: function(){
                var self = this;
                self.collection = new LeaderboardCollection();
                self.collection.fetch({
                    success: function(collection, response, options){
                        self.$el.html(self.template({ players: collection.toJSON()}));
                    }
                })              

            }
        });

        return LeaderboardView;
});

哪个呈现正确。由于fetch调用是异步的,我假设在fetch之后调用模板呈现并不考虑实际存在的数据。进一步的研究表明,这不是填充页面加载视图的方法,而是改为引导它