私は次のチュートリアルに従っています:
http://arturadib.com/hello-backbonejs/docs/3.html
これは私が立ち往生しているコードの一部です:
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;
this.render();
},
私が理解するのに苦労しているコード行は次のとおりです。
this.collection.bind('add', this.appendItem);
アンダースコアに bind メソッドがあることは知っていますが、それは同じ bind 関数ではないと思います。
上記の行が何のためのもので、どこでそれについてもっと読むことができるか説明してもらえますか?