2013-03-03 37 views

回答

2

從我可以告訴,這是fat arrow是什麼:

@collection.bind 'reset', => 
    @render() 

它編譯成:

var _this = this; 

this.collection.bind('reset', function() { 
    return _this.render(); 
});