2013-02-14 67 views
2

我相信,modelform知道如何使用模型字段验证程序。我正在创建一个动态表单,我需要复制这个行为,所以我不违反DRY。我在哪里连接这两个?如何手动将模型字段验证程序连接到表单字段

+1

如果您提供了代码的相关部分,这将更容易回答。 – mVChr 2013-02-14 00:21:45

+0

我会尝试构建一个简单的例子 – danatron 2013-02-14 01:02:29

回答

2

django的/形式/ forms.py

is_valid形式方法正在调用形式full_clean从形式_get_errors此处方法(self.errors=property(_get_errors)):

return self.is_bound and not bool(self.errors) 

full_clean调用该序列的功能:

self._clean_fields() 
self._clean_form() 
self._post_clean() 

而这里的功能您正在寻找的,我认为:

def _post_clean(self): 
    """ 
    An internal hook for performing additional cleaning after form cleaning 
    is complete. Used for model validation in model forms. 
    """ 
    pass 

的Django /表格/ models.py

def _post_clean(self): 
    opts = self._meta 
    # Update the model instance with self.cleaned_data. 
    self.instance = construct_instance(self, self.instance, opts.fields, opts.exclude) 

    exclude = self._get_validation_exclusions() 

    # Foreign Keys being used to represent inline relationships 
    # are excluded from basic field value validation. This is for two 
    # reasons: firstly, the value may not be supplied (#12507; the 
    # case of providing new values to the admin); secondly the 
    # object being referred to may not yet fully exist (#12749). 
    # However, these fields *must* be included in uniqueness checks, 
    # so this can't be part of _get_validation_exclusions(). 
    for f_name, field in self.fields.items(): 
     if isinstance(field, InlineForeignKeyField): 
      exclude.append(f_name) 

    # Clean the model instance's fields. 
    try: 
     self.instance.clean_fields(exclude=exclude) 
    except ValidationError, e: 
     self._update_errors(e.message_dict) 

    # Call the model instance's clean method. 
    try: 
     self.instance.clean() 
    except ValidationError, e: 
     self._update_errors({NON_FIELD_ERRORS: e.messages}) 

    # Validate uniqueness if needed. 
    if self._validate_unique: 
     self.validate_unique() 

因此,模型表单验证,从简单的表单验证通过执行额外调用模型instance._clean_fields(exclude=exclude)不同(某些领域从验证中排除)和instance.clean()