如果我有以下 html:
<form method ='GET' action='/search'>
<input type='checkbox' name='box1' id='box1'> Option 1
<input type='checkbox' name='box2' id='box2'> Option 2
<input type='submit'>
</form>
我怎么知道在 python/django 中是否选择了一个复选框(真/假)?我正在用 Django 编写一个应用程序,我想根据选中的复选框显示一个特定的结果。
提前谢谢了!