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 日付フィールドは 2 つだけです。
DateField DateTimeField
DateField
DateTimeField
datefield を使用し、デフォルトのクエリセットを使用して月と日で並べ替えることをお勧めします。
クエリセット - 月
そうしないと、月と日を文字列として保存する必要があり、それは面倒で不要です。