作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为我的项目创建一个网站,并且有一个名为Purchase_Date
的字段:
class Member_Registration(models.Model):
Purchase_Date=models.DateField(max_length=10, help_text="Enter the date of purchase")
最佳答案
您想要的是validator:
from datetime import date
from django.core.exceptions import ValidationError
from django.db import models
def no_future(value):
today = date.today()
if value > today:
raise ValidationError('Purchase_Date cannot be in the future.')
class Member_Registration(models.Model):
Purchase_Date=models.DateField(help_text="Enter the date of purchase", validators=[no_future])
关于python - 验证datefield,以便它不会在Django中使用将来的日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49882526/
我是一名优秀的程序员,十分优秀!