It depends on what you mean by integrate ...

I'm currently developping a Django/JQuery app and it is desperately
easy.

All you have to use on a django side is something like this:

from django.utils.simplejson import dumps

def myView(request):
    myQuerySet = myFunctionToBuildMyQuerySet(request.POST.copy())
    json = dumps(myQuerySet)
    return HttpResponse(json)


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to