这是我的代码:
@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[]
,...但我不理解flask api中描述的过程。
答案 0 :(得分:54)
如果您使用的是HTTP POST方法,则需要检索如下参数:
pippo = request.form.getlist('name[]')
如果您使用HTTP GET方法,请执行以下操作:
pippo = request.args.getlist('name[]')
检查文档here。
答案 1 :(得分:3)
您还可以执行以下操作:
d = request.form.to_dict()
来源:https://tedboy.github.io/flask/generated/generated/werkzeug.ImmutableMultiDict.html