2013-04-01 2 views

답변

2

당신은 이벤트에 패스되는 인수를 보여줍니다 Catalog of Events 있습니다.

"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 
} 
+0

이 도움이됩니다. 고마워. – digToGetWater