ModelForm a.class Meta: model,#对应Model的 fields=None,#字段 exclude=None,#排除字段 labels=None,#提示信息 help_texts = None,#帮助提示信息 widgets = None,#自定义插件 error_messages = None,#自定义错误信息(整体错误信息from django.core.exceptions import NON_Field_ERRORS) field_classes = Non…