摘要:
Formset(表单集)是多个表单的集合。Formset在Web开发中应用很普遍,它可以让用户在同一个页面上提交多张表单,一键添加多个数据 class StudentStudyRecordModel(forms.ModelForm): class Meta: model=StudentStudyRe 阅读全文
摘要:
一、验证顺序 查看form下的源码了解顺序BaseForm为基类,中间包含了is_valid校验方法 @html_safe class BaseForm: ......... self.is_bound = data is not None or files is not None ....... 阅读全文