标签: python python-3.x flask backend request.form
因此,我目前正在制作一个Webapp,用户必须在其中填写100多个左右的内容。 当用户保存输入时,所有这些值都必须保存在数据库中。
因为我必须请求太多输入。我想找到一种更轻松/更快的方法来请求这些输入。而不是输入100+ inputField = request.form['exampleInputField']。
inputField = request.form['exampleInputField']
其他详细信息: 每个名称都被称为相同,后面带有数字:<p>Example <input name="pl1"></p>
<p>Example <input name="pl1"></p>