Hi,

I try to create an autocomplete box. The source comes from an ajax
request to the django server.
Handling of the request looks like this:

def handler(request):
  term = request.GET.get('term','')
  # create json data and send it

Problem is that GET is empty whereas the called url contains "?
term=...". META['QUERY_STRING'] is empty to.
If I try to make the request with a post method, it works.

Is there something special to do to make it working ?
Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-develop...@googlegroups.com.
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en.

Reply via email to