我正在尝试在我的 HTML 中使用复选框,将这些复选框返回到我的 python 后端,然后在单击该框时增加三个计数器。
现在我的 HTML 如下并且工作正常:
<form method="post">
<input type="checkbox inline" name="adjective" value="entertaining">Entertaining
<input type="checkbox inline" name="adjective" value="informative">Informative
<input type="checkbox inline" name="adjective" value="exceptional">Exceptional
</form>
然后在我的python后端我有以下内容:
def post(self):
adjective = self.request.get('adjective ')
if adjective :
#somehow tell if the entertaining box was checked
#increment entertaining counter
#do the same for the others