本文介绍了python烧瓶ImmutableMultiDict的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这是我的代码:
@user_bp.route('/band', methods=['GET', 'POST'])
def band_details():
from include.form.User import Banddetails
form = Banddetails()
if request.method == 'POST' and form.validate_on_submit():
pippo = request.args.getlist('name[]')
print 'sei passato di qui' + str(len(pippo))
for item in pippo:
print item
return "result"
return render_template("banddetails.html", form=form, session=session)
我有一个类似的表格:
<input type="text" name="name[]" id="name" value="">
我想获取元素name[]
,lastname[]
,...,但是我不理解烧瓶api中描述的过程.
I want get the element name[]
, lastname[]
, ... but I don't understand the procedure described in the flask api.
推荐答案
如果使用的是HTTP POST方法,则需要检索如下参数:
If you are using an HTTP POST method you need to retrieve parameters like this:
pippo = request.form.getlist('name[]')
如果您使用HTTP GET方法,请按照以下步骤操作:
If you use HTTP GET method, do it like this:
pippo = request.args.getlist('name[]')
在此处检查文档.
这篇关于python烧瓶ImmutableMultiDict的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!