On 28 Jun 2006, at 02:21, HoLin wrote:

> ?type_encode=0&domain=python&root=.cn&root=.com&root=.net
>
> using request.REQUEST.get("root") can only get  the last value *.net*
> how can I get the right value of root?

request.GET.getlist('root') will get you back a list of all of the  
root= values.

This is one of my favourite features of Django's request handling.  
PHP only ever gives you back the last value (unless you use root[] 
=blah&root[]=blah2 which is a bit weird). Python's cgi module ALWAYS  
gives you back a list, even though 99% of the time you only want one  
value. With Django, we decided to make the common case (a single  
value) act like a dictionary, but provided an explicit mechanism for  
accessing lists of values. You can rely on the fact that request.GET 
[key] will only ever return a single string, while request.GET.getlist 
(key) will always return a list of strings (or an empty list).

Cheers,

Simon

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to