1

我在模型中有方法:

decrease: function(){
    this.save({
        count: this.get('count') - 1
    });
}

接下来,我调用事件视图中的方法:

'click [data-skills="minus"]': 'decrease'

从这个方法中,我从模型中调用方法:(#3)

decrease: function(){
    this.model.decrease();
}

有没有办法直接从事件中调用模型的方法?没有第 3 步。

4

1 回答 1

2
events: {
    'click [data-skills="minus"]': function(){
       this.model.decrease();
     }
}
于 2012-08-29T14:30:32.423 回答