I'm learning Django and I found class-based views and I wonder how to implement Ajax on those views.

I searched github for a django project and I found some using class-based views but not ajax.

So... Anybody knows an open source project that use both things? It easier to learn that way.

Thank you :)

link|improve this question

I would recommend that you deal with them separately. It's much eaiser to work with AJAX if you make the site work without it, then define some JSON interfaces, and then add some AJAX to make it nicer/faster. – SystemParadox Nov 9 '11 at 1:09
Well, that's the idea in every framework, make it work without ajax and then, ajax it. Is that what you mean? :) – Jesus Rodriguez Nov 9 '11 at 1:16
I think he means to separate your Ajax views altogether i.e. have a set of views to receive normal requests and a separate set of views to deal with ajax requests (maybe in the form of an api) – Timmy O'Mahony Nov 9 '11 at 1:26
Well, as an ex asp.net mvc developer, I had actions for normal views and actions just for ajax (that returns json stuff). – Jesus Rodriguez Nov 9 '11 at 12:09
feedback

1 Answer

up vote 4 down vote accepted

An ajax view isn't much different to a normal view except that you usually want to return a different format then when processing a normal request. This format is usually JSON.

The documentation has an example of a mixin that can be used to return JSON, so this is a good starting point:

https://docs.djangoproject.com/en/dev/topics/class-based-views/#more-than-just-html

Do you want your view to reply to normal requests or only deal with AJAX requests? If the former, the only trick would be to write in a small check in the render_to_response method to reject any normal GET requests. If the latter, the above link goes on to discuss a situation where you can create a view that will deal with ajax requests and with normal requests.

link|improve this answer
I read that before but class-based views are more complex than I thought. Django doc is huge, everytime you read it, you discover a new link and that link have 30 links to read :P. The problem is that the doc says that just a dump is not enough so I would like to see some real world example to see how the people use it and see if they extend that json mixing like the doc says. – Jesus Rodriguez Nov 9 '11 at 12:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.