0

私の質問は、コレクションの追加イベントをバインド/リッスンするときに、コレクションから削除されたモデルを検出する方法があるかどうかです。

例:

this.listenTo(monthsOnBoardCollection, "remove", function(){
  //is it possible here to find what got removed from the collection ? 
}
4

1 に答える 1

2

イベントに渡される引数を示すイベントのカタログがあります。

"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
}
于 2013-04-01T18:22:07.937 に答える