4

我对 Backbone 和 Underscore 比较陌生,其中一个问题并不是真正的问题 - 只是出于好奇而困扰我。

我构建了一个非常简单的应用程序,它允许您在集合中添加和删除模型并在浏览器中呈现它们。它还具有console.log收藏的能力(所以我可以看到我的收藏)。

这是奇怪的事情:正在生成的 ID1,3,5...等等。我的代码是否有特定的原因,或者与 BB/US 有关?

这是一个工作小提琴:http: //jsfiddle.net/ptagp/

和代码:

App = (function(){

var AppModel = Backbone.Model.extend({

    defaults: {
        id: null,
        item: null
    }

});

var AppCollection = Backbone.Collection.extend({

    model: AppModel

});

var AppView = Backbone.View.extend({

    el: $('#app'),

    newfield: $('#new-item'),

    initialize: function(){
        this.el = $(this.el);
    },

    events: {
        'click #add-new': 'addItem',
        'click .remove-item': 'removeItem',
        'click #print-collection': 'printCollection'
    },

    template: $('#item-template').html(),

    render: function(model){
        var templ = _.template(this.template);
        this.el.append(templ({
            id: model.get('id'),
            item: model.get('item')
        }));
    },

    addItem: function(){
        var NewModel = new AppModel({
            id: _.uniqueId(),
            item: this.newfield.val()
        });
        this.collection.add(NewModel);
        this.render(NewModel);  
    },

    removeItem: function(e){
        var id = this.$(e.currentTarget).parent('div').data('id');
        var model = this.collection.get(id);
        this.collection.remove(model);
        $(e.target).parent('div').remove();
    },

    printCollection: function(){
        this.collection.each(function(model){
            console.log(model.get('id')+': '+model.get('item'));
        });
    }

});

return {
    start: function(){
        new AppView({
            collection: new AppCollection()
        });
    }
};

});

$(function(){ new App().start(); });
4

1 回答 1

8

如果您查看backbone.js 源代码,您会注意到_.uniqueId 用于设置模型的cidhttps ://github.com/documentcloud/backbone/blob/master/backbone.js#L194

这意味着每次创建模型实例时_.uniqueId()都会被调用。这就是导致它增加两次的原因。

于 2012-10-31T22:14:09.960 回答