Django + Ajax
- by Joe
So, I am just starting to use jQuery with one of my Django projects, but I have a pretty noobie question.
In a django view you have to return an HttpResponse object from the view, but sometimes I don't need to return anything. For instance, I might just be updating the database via ajax and don't need to send anything back. So my question is, what do you do in that situation?
Thanks