私の質問は、コレクションの追加イベントをバインド/リッスンするときに、コレクションから削除されたモデルを検出する方法があるかどうかです。
例:
this.listenTo(monthsOnBoardCollection, "remove", function(){
//is it possible here to find what got removed from the collection ?
}
私の質問は、コレクションの追加イベントをバインド/リッスンするときに、コレクションから削除されたモデルを検出する方法があるかどうかです。
例:
this.listenTo(monthsOnBoardCollection, "remove", function(){
//is it possible here to find what got removed from the collection ?
}
イベントに渡される引数を示すイベントのカタログがあります。
"remove" (model, collection, options) — when a model is removed from a collection.
したがって、基本的には次のとおりです。
this.listenTo(monthsOnBoardCollection, "remove", function(model, collection, options){
//now you have the model, the collection and the options which were passed to the remove method
}