Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于只应包含日期和月份的模型,最佳字段类型/字段选项是什么。
class Reminder(models.Model): person = models.OneToOneField(Person) reminder_one = models.??? reminder_two = models.???
因为我想输入一个每年作为提醒的日期,所以我想确保没有输入年份。
谢谢,
只有两个标准的 Django 日期字段-
DateField DateTimeField
DateField
DateTimeField
我建议您使用 datefield 并使用默认查询集按月和日排序:
查询集 - 月
否则,您将需要将月份和日期存储为字符串,这会变得混乱并且是不必要的。