據我所知,django的查詢只適用於年,月和日。我在尋找的東西相當於這個代碼來獲取特定的時間範圍內每個星期天例如:每週日10:50-12:35:Django查找特定的小時和分鐘
Entry.objects.filter(Record_Date__week_day=1,)
Record_Date__hour__gte=10)
Record_Date__hour__lte=12)
Record_Date__minute__gte=50)
Record_Date__minute__lte=35)
你有什麼想法的替代辦呢?
[Django filter by hour]的可能重複(http://stackoverflow.com/questions/2984751/django-filter-by-hour) – jpic