django按时间范围查询数据库实例代码
从前台中获得时间范围,在django后台处理request中数据,完成format,按照范围调⽤函数查询数据库。
介绍⼀个简单的功能,就是从web表单⾥获取⽤户指定的时间范围,然后在数据库中查询此时间范围内的数据。
数据库⾥的model举例是这样:
django项目实例class book(models.Model):
name = models.CharField(max_length=50, unique=True)
date = models.DateTimeField()
def __unicode__(self): return self.name
假设我们从表单获得的request.GET⾥⾯的时间范围最初是这样的:
request.GET = {'year_from': 2010, 'month_from': 1, 'day_from': 1,
'year_to':2013, 'month_to': 10, 'day_to': 1}
由于model⾥保存的date类型是models.DateTimefield() ,我们需要先把request⾥⾯的数据处理成datetime类型(这是django⾥响应代码的前半部分):
import datetime
def filter(request):
if 'year_from' and 'month_from' and 'day_from' and\
'year_to' and 'month_to' and 'day_to' in request.GET:
y = request.GET['year_from']
m = request.GET['month_from']
d = request.GET['day_from']
date_from = datetime.datetime(int(y), int(m), int(d), 0, 0)
y = request.GET['year_to']
m = request.GET['month_to']
d = request.GET['day_to']
date_to = datetime.datetime(int(y), int(m), int(d), 0, 0)
else:
print "error time range!"
接下来就可以⽤获得的date_from 和date_to作为端点筛选数据库了,需要⽤到__range函数,将上⾯代码加上数据库查询动作:
import datetime
def filter(request):
if 'year_from' and 'month_from' and 'day_from' and\
'year_to' and 'month_to' and 'day_to' in request.GET:
y = request.GET['year_from']
m = request.GET['month_from']
d = request.GET['day_from']
date_from = datetime.datetime(int(y), int(m), int(d), 0, 0)
y = request.GET['year_to']
m = request.GET['month_to']
d = request.GET['day_to']
date_to = datetime.datetime(int(y), int(m), int(d), 0, 0)
book_list = book.objects.filter(date__range=(date_from, date_to))
print book_list
else:
print "error time range!"
总结
以上就是本⽂关于django 按时间范围查询数据库实例代码的全部内容,希望对⼤家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不⾜之处,欢迎留⾔指出。感谢朋友们对本站的⽀持!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。