1

对于我在整个站点中使用的字段组合,我有以下自定义验证:

class MyModelForm(forms.ModelForm):
    my_field_type_constant = 'my_field_type'
    my_field_code_constant = 'my_field_code'

    class Meta:
        model = MyModel

    def validate_my_field_code(self, my_field_code_error, my_field_type, my_field_code):

        validate = URLValidator(verify_exists=False)
        try:
            validate(my_field_code)
        except ValidationError:
            messsge = u"My custom error"
            self._errors[my_field_code_error] = self.error_class([messsge])


    def clean(self):

        cleaned_data = super(MyModelForm, self).clean()
        my_field_type = cleaned_data.get(self.my_field_type_constant)
        my_field_code = cleaned_data.get(self.my_field_code_constant)

        my_field_type_from_model = other_model.models.my_field_TYPES[1][0]
        if my_field_type == my_field_type_from_model:
            self.validate_my_field_code(self.my_field_code_constant, my_field_type, my_field_code)
        return cleaned_data

我在我网站的许多表单中使用 my_field_type 和 my_field_code 的组合。我要坚持 DRY 原则。如何使这些字段的验证可用于其他表单,而无需将其复制并粘贴到所有其他表单中?

4

1 回答 1

3

为什么不将使用此验证的其他 ModelForm 类子类化:

class MyOtherModelForm(MyModelForm):
    pass

然后,您可以通过继承免费获得这一切。

于 2013-08-16T19:40:41.293 回答