2013-03-03 53 views

回答

2

从我可以告诉,这是fat arrow是什么:

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

它编译成:

var _this = this; 

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