モデルにメソッドがあります:
decrease: function(){
this.save({
count: this.get('count') - 1
});
}
次に、イベントのビューでメソッドを呼び出します。
'click [data-skills="minus"]': 'decrease'
そして、このメソッドから、モデルからメソッドを呼び出します: (#3)
decrease: function(){
this.model.decrease();
}
イベントからモデルのメソッドを直接呼び出す方法はありますか? ステップ#3なし。