May be such problem is not new, but I didn't find anything similar. I have such jQuery code:
$.ajax({ url : ('/people/'+id), type : 'DELETE', dataType : 'json', success : function(e) {
table.getItems(currentPage);
} });
When I use in Rails controller this:
def destroy
@person = Person.find(params[:id])
@person.destroy
respond_to do |format|
format.html { redirect_to(people_url) }
format.json { render :json => @person, :status => :ok }
end
end
It works. When I use following (as standard generated), success callback is not called:
def destroy
@person = Person.find(params[:id])
@person.destroy
respond_to do |format|
format.html { redirect_to(people_url) }
format.json { head :ok }
end
end
Tested under rails 3.0.3, jQuery 1.4.2, Firefox 3.6.13. Firebug says, that query goes and returns 200 OK in both cases, item is deleted in both cases too. But in second case callback is not called. Is that difference significant in REST, and is there a way to use jquery in original controller way?