Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
处理可以包含动态数量的文本框的 HTML 表单数据有哪些常用方法。
我有一个 Python 烧瓶服务器,它提供一些 HTML 模板。它还处理发布到它的表单数据。一种形式具有动态数量的类别。
我一直在用这个
while True: index = index + 1 if 'text_box' + str(index) in request.form: #use that text box' value break
这看起来根本不是正确的做法。
为所有框命名 ( name="category")。然后使用
name="category"
all_categories = request.form.getlist("category")