vote up 0 vote down star

I need to get values of these check boxes with same name through HTTP "POST".

<input type="checkbox" id="dde" name="dept[]" value="dde"/>
<input type="checkbox" id="dre" name="dept[]" value="dre"/>
<input type="checkbox" id="iid" name="dept[]" value="iid"/>

How to get these values in python using self.request.get() method?

flag

Add a little more context to your question, what standard library module or framework are you using? Can you add a little sample code to your question? – Tendayi Mawushe Nov 3 at 14:23

1 Answer

vote up 4 vote down

You can use request.get_all().

According to the docs it "Returns a list of values of all of the query (URL) or POST arguments with the given name, possibly an empty list."

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.