Delete a backbone model without sending DELETE
Remove a model from a collection, but do not send DELETE HTTP request Wrong (this will trigger HTTP DELETE request) : var model = this.collection.at(4); model.destroy(); Good : model.trigger("destroy", model); When do you...
Recent Comments