我知道我们可以在django中拥有日期小部件。
birth_year = forms.DateField(widget=SelectDateWidget(years=BIRTH_YEAR_CHOICES))
在django中选择时间有类似的东西吗?
答案 0 :(得分:0)
您正在寻找DateTime字段。
birth_time=forms.DateTime()
了解更多信息:https://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.DateTimeField