据我所知,django 确实只查找年、月和日。我正在寻找与此代码等效的东西来获取每个星期日的特定时间范围,例如:每个星期日 10:50-12:35:
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)
你有什么想法可以替代吗?