バックボーンを学習中ですが、すべての構文を理解していません。以下に、バックボーンを学習するために取り組んできたコードの一部を入れて、この質問で参照できるようにします。バックボーンがどのように機能するかはほとんど理解できますが、一部のコードのいくつかのマーキングの背後にある意味がよくわかりません。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);