On Apr 8, 5:40 am, ydjango <neerash...@gmail.com> wrote:
> I have an ajax request coming in like 
> thishttp://localhost:8000/board/getnames?age=31&sex=1
>
> I cannot change it tohttp://localhost:8000/board/getnames/31/1
>
> 1) what would be the url pattern to use in urls.py?
>
> 2) what would be view method - def getname(request, age = None, sex =
> None):

GET parameters - those after the ? - are not processed by urls.py, but
are passed in as members of the request.GET querydict. So your url
pattern just needs to match 'r^/board/getnames$'.
--
DR.

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

Reply via email to