Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My problem is that with the given code:

from flask import Flask, request

app = Flask(__name__)

@app.route("/")
def hello():
    return str(request.values.get("param", "None"))

app.run(debug=True)

and I visit:

http://localhost:5000/?param=a&param=bbb

I should expect an output of ['a', 'bbb'] except Flask seems to only accept the first param and ignore the rest.

Is this a limitation of Flask? Or is it by design?

share|improve this question
1  
request.values.get("param", "None"), Isn't it requesting once? – sadaf2605 Jan 7 at 0:55
getlist works! Do you want to submit an answer and I'll mark it correct. – jjia6395 Jan 7 at 1:00

1 Answer

up vote 7 down vote accepted

You can use getlist, which is similar to Django's getList but for some reason isn't mentioned in the Flask documentation:

return str(request.values.getlist('param'))

The result is:

[u'a', u'bbb']
share|improve this answer
2  
request.values is an instance of CombinedMultiDict, a subclass of MultiDict, which is part of Werkzeug. getlist() method is described in its docs: werkzeug.pocoo.org/docs/datastructures/… – Audrius Kažukauskas Jan 7 at 11:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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