我是 web2py 的新手。我有一个表(表单),并且在我的 python 脚本中我想使用特定的字段值。
def GetData()
return request.vars.values()
该函数将所有字段一起提供给我,但我想知道如何从我的表单中获取“input1”(例如)字段的值。
形式:
<form action="GetData" enctype="multipart/form-data" id="formId" method="post"
name="formId">
<table>
<tr id="field1">
<input id="input1" name="input1" type="text" value="" />
</tr>
<tr id="field2">
<input id="input2" name="input2" type="text" value="" />
</tr>
<tr id="field3">
<input type="submit" value="Submit" />
</tr>
</table>
</form>
谢谢!