我的网页包含动态表单字段。用户可以添加或删除输入字段。当我不确定它将会有多少字段时,如何将表单值传递给我的脚本?
Here's the form Field, where user can add or remove year to the field before submitting the form
答案 0 :(得分:1)
您不需要知道它将有多少个字段。为所有字段提供相同的HTML name
属性,并且可以通过request.form.getlist(fieldname)
在Flask中访问数据。