我在模型中有方法:
decrease: function(){
this.save({
count: this.get('count') - 1
});
}
接下来,我调用事件视图中的方法:
'click [data-skills="minus"]': 'decrease'
从这个方法中,我从模型中调用方法:(#3)
decrease: function(){
this.model.decrease();
}
有没有办法直接从事件中调用模型的方法?没有第 3 步。