On 3/6/07, johnny <[EMAIL PROTECTED]> wrote:
>
> I am using jQuery to do the autocomplete.  Autocomplete  request
> backend script like this: script_url?q=foo.  But there is a problem
> with django routing?
>
> (r'^tag/autocomplete/?q=(?P<q>\w+)/$',
> 'apps.tag.views.tag_autocomplete'),
>
> Here is my error:
>
> [05/Mar/2007 15:11:51] "GET /tag/autocomplete/?q=a HTTP/1.1" 404 4218
> [05/Mar/2007 15:11:51] "GET /jquery/img/indicator.gif HTTP/1.1" 404
> 3697
> [05/Mar/2007 15:11:52] "GET /tag/autocomplete/?q=app HTTP/1.1" 404
> 4218
>
> Thank you.
>
Because django will parse the string after '?' as QueryString, so your
url pattern should be:

(r'^tag/autocomplete/$')

And process q=xxx in request.GET, for example:

s = request.GET.get('q', '')

>> [05/Mar/2007 15:11:51] "GET /jquery/img/indicator.gif HTTP/1.1"

It seems that you didn't correctly setup the static files, if you are
using development server(via manage.py runserver), you should see the
document:

 http://www.djangoproject.com/documentation/static_files/


-- 
I like python!
UliPad <<The Python Editor>>: http://wiki.woodpecker.org.cn/moin/UliPad
My Blog: http://www.donews.net/limodou

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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