如何将动态HTML表单字段的值传递给我的Flask应用程序

时间:2016-01-09 12:14:40

标签: python flask

我的网页包含动态表单字段。用户可以添加或删除输入字段。当我不确定它将会有多少字段时,如何将表单值传递给我的脚本?

Here's the form Field, where user can add or remove year to the field before submitting the form

1 个答案:

答案 0 :(得分:1)

您不需要知道它将有多少个字段。为所有字段提供相同的HTML name属性,并且可以通过request.form.getlist(fieldname)在Flask中访问数据。