就像是
from django import forms
class MyForm(forms.Form):
check = forms.BooleanField(required = True)
# your other form fields
Run Code Online (Sandbox Code Playgroud)
对于BooleanField,required = True将检查是否选中了该框。这是因为仅在选中数据后才会提交数据。
来源:https : //docs.djangoproject.com/en/dev/ref/forms/fields/#django.forms.BooleanField
如果该字段的required = True,则验证该值为True(例如,选中该复选框)。