django model filter变量为空则筛选全部

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django model filter变量为空则筛选全部相关的知识,希望对你有一定的参考价值。

参考技术A django的filter方法是从数据库的取得匹配的结果,返回一个对象列表,如果记录不存在的话,它会返回[]。
比如我数据库里有一条记录,记录的name的值是Python的话,我用
student=Student.objects.filter(name=\'python\')
它返回的student是一个对象的列表,可以看的出来student[0]和上面的get方式返回的student的结果是一样的。

django model 条件过滤 queryset.filter(**condtions) 用法

1、下述代码查询model对应数据库中日期等于2018-05-22的数据:

queryset = model.objects.all() 

condtions: {‘date‘: ‘2018-05-22‘}

query_res = queryset.filter(**condtions)

2、下述代码查询model对应数据库中日期小于2018-05-22的数据:

queryset = model.objects.all() 

condtions: {‘date__lt‘: ‘2018-05-22‘}

query_res = queryset.filter(**condtions)

 

3.总结:条件选取querySet的时候,filter表示=,exclude表示!=。
querySet.distinct() 去重复


__exact 精确等于 like ‘aaa‘
 __iexact 精确等于 忽略大小写 ilike ‘aaa‘
 __contains 包含 like ‘%aaa%‘
 __icontains 包含 忽略大小写 ilike ‘%aaa%‘,但是对于sqlite来说,contains的作用效果等同于icontains。
__gt 大于
__gte 大于等于
__lt 小于
__lte 小于等于
__in 存在于一个list范围内
__startswith 以...开头
__istartswith 以...开头 忽略大小写
__endswith 以...结尾
__iendswith 以...结尾,忽略大小写
__range 在...范围内
__year 日期字段的年份
__month 日期字段的月份
__day 日期字段的日
__isnull=True/False

如果参数是字典,如

condtions: {‘date__lt‘: ‘2018-05-22‘,‘status‘: ‘未支付‘,‘name__exact‘: ‘yangxia‘}

 Entry.objects.filter(**condtions)相当于 Entry.objects.filter(date__lt= ‘2018-05-22‘,status=‘未支付‘,name__exact=‘yangxia‘)

翻译成sql语句是

select * from  Entry.objects where date<=‘2018-05-22‘ and status=‘未支付‘ and name like ‘yangxia‘


filter例子:
>> q1 = Entry.objects.filter(headline__startswith="What")
>> q2= q1.filter(pub_date__gte=datetime.date.today())
>>> q3= q.filter(pub_date__lte=datetime.date.today())

 

exclude例子:
>>> q1 = q.exclude(body_text__icontains="food")

>> q2 = q1.exclude(pub_date__gte=datetime.date.today())

 

以上是关于django model filter变量为空则筛选全部的主要内容,如果未能解决你的问题,请参考以下文章

C#判断变量是不是为空,为空则返回指定值

Django中ORM找出内容不为空的数据

django model的get和filter方法的区别

当过滤字符串为空时,如何停止 Graphql + Django-Filters 返回所有对象?

django model中get()和filter()方法的区别

Django Admin:带有def函数变量的list_filter和date_hierarchy