我正在经历学习骨干的过程,并不了解所有的语法。下面我输入了一些我一直在学习的代码,以便我可以在这个问题中引用它。虽然我了解了主干的大部分工作原理,但我不太了解某些代码中一些标记背后的一些含义。BackBone 的文档来源充其量是稀缺的。我得到了其中的 90%,但是我没有得到的语法是下划线 '_' 真正提供了什么以及何时使用它。例如,下面的代码在“.bindAll( ....”处使用下划线。当然我明白绑定是什么。只是不确定何时使用下划线以及标记起什么作用。另一个例子是当下划线出现在 '(this.collection.
(function($){
var Item = Backbone.Model.extend({
defaults: {
part1: 'hello',
part2: 'world'
}
});
var List = Backbone.Collection.extend({
model: Item
});
var ListView = Backbone.View.extend({
el: $('body'),
events: {
'click button#add': 'addItem'
},
initialize: function(){
_.bindAll(this, 'render', 'addItem', 'appendItem'); // remember: every function that uses 'this' as the current object should be in here
this.collection = new List();
this.collection.bind('add', this.appendItem); // collection event binder
this.counter = 0;
//once the object is initialized, render the page.
this.render();
},
render: function(){
var self = this;
$(this.el).append("<button id='add'>Add list item</button>");
$(this.el).append("<ul></ul>");
_(this.collection.models).each(function(item){ // in case collection is not empty
self.appendItem(item);
}, this);
},
addItem: function(){
this.counter++;
var item = new Item();
item.set({
part2: item.get('part2') + this.counter // modify item defaults
});
this.collection.add(item); // add item to collection; view is updated via event 'add'
},
appendItem: function(item){
$('ul', this.el).append("<li>"+item.get('part1')+" "+item.get('part2')+"</li>");
}
});
var listView = new ListView();
})(jQuery);