Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a QueryDict that I get from request.POST in this format:

<QueryDict: {'name': ['John'], 'urls': ['google.com/
bing.com/
askjeeves.com/'], 'user_email': ['john.smith@gmail.com']}>

Why are the values all in lists?

I did dict(request.POST)

I got

{'name': ['John'], 'urls': ['google.com/
bing.com/
askjeeves.com/'], 'user_email': ['john.smith@gmail.com']}

How can I get?:

{'name': 'John', 'urls': 'google.com/
bing.com/
askjeeves.com/'`, 'user_email': 'john.smith@gmail.com'}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
211 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can use list comprehension to get the first entry from the value lists;

dd = dict(request.POST)
ddnew = {k:dd[k][0] for k in dd}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...