Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best AJAX library for Django? [closed]

Tags:

ajax

django

Which AJAX library is the best for django and why?
Looking for one with a large database of tutorials, books and detailed documentation.
Which one is the easiest to work with? Which one is in early development but shows great promise for the future?

Regards,
chriss

like image 290
chriss Avatar asked Feb 04 '09 15:02

chriss


People also ask

Can you use AJAX with Django?

Using Ajax in Django can be done by directly using an Ajax library like JQuery or others. Let's say you want to use JQuery, then you need to download and serve the library on your server through Apache or others. Then use it in your template, just like you might do while developing any Ajax-based application.

What is an AJAX library?

Ajax is a group of interrelated web development technologies (Asynchronous Javascript And XML) used to create interactive web applications.


1 Answers

I highly recommend jQuery. There are several tutorials on how to implement it.

http://lethain.com/entry/2007/dec/11/two-faced-django-part-5-jquery-ajax/

http://lethain.com/entry/2007/dec/01/using-jquery-django-autocomplete-fields/

http://vincentxu.net/minimal-ajax-in-django-with-jquery-post

NOTE: Microsoft also announced a while ago that jQuery would be the official client-side framework for ASP.NET MVC, so its good to know regardless of what server side framework you're using.

like image 53
Soviut Avatar answered Oct 02 '22 17:10

Soviut