Django custom field validator vs. clean

后端 未结 2 968
梦如初夏
梦如初夏 2021-02-01 06:34

I would like to create TodayOrLaterDateField() which would subclass DateField() field as I am using this condition in many places. The purpose of this field would be avoiding pu

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-01 06:54

    You can extend models.DateField and override to_python method. Didn't tested on Django 1.3 but should work.

    import datetime
    from django.core import exceptions
    from django.db import models
    
    class TodayOrLaterDateField(models.DateField):
        def to_python(self, value):
            value = super(TodayOrLaterDateField, self).to_python(value)
            if value < datetime.date.today():
                raise exceptions.ValidationError(u'Date must be today or later')
            return value
    

提交回复
热议问题