Friday, June 28, 2013

Re: Ajax


I'm not sure what you mean. Django completely supports AJAX right now. 

Django is a server-side framework, and the only part of AJAX that is server-side is the API call. 

An API call is just a view that returns JSON/XML instead of HTML. You can write that right now in Django.

If you want a library to make it even easier, there are several options, including TastyPie and Django-REST-Framework.

The client-side part of the AJAX problem is outside the domain of Django. There are plenty of good client-side frameworks; pick one, and you'll find it can talk perfectly well with Django.

Yours,
Russ Magee %-)

On Sat, Jun 29, 2013 at 1:52 PM, Nafiul Islam <gamesbrainiac@gmail.com> wrote:
In which version, will Django natively support Ajax? I'm curious because you need Ajax for almost any site these days, and Django not supporting it natively has become a bit of a hindrance for me.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

No comments:

Post a Comment