Django模糊查询

Posted pythonclub

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django模糊查询相关的知识,希望对你有一定的参考价值。

https://blog.csdn.net/liuweiyuxiang/article/details/71104613

 

def search(request):

    searchtype = request.POST.get("searchtype")

    keyword = request.POST.get("keyword")

    if searchtype == "all":

        #多个字段模糊查询, 括号中的下划线是双下划线,双下划线前是字段名,双下划线后可以是icontains或contains,区别是是否大小写敏感,竖线是或的意思

        sciencenews = models.Sciencenews.objects.filter(Q(title__icontains=keyword)

|Q(content__icontains=keyword)|Q(author__icontains=keyword))

    elif searchtype == "author":

        #单个字段模糊查询

        sciencenews = models.Sciencenews.objects.filter(author__icontains=keyword)

    elif searchtype == "title":

        sciencenews = models.Sciencenews.objects.filter(title__icontains=keyword)

    elif searchtype == "content":

        sciencenews = models.Sciencenews.objects.filter(content__icontains=keyword)

else:

#使用点连接的filter链表示and

sciencenews = models.Sciencenews.objects.filter(author__icontains=keyword).

filter(title__icontains=keyword).filter(content__icontains=keyword)

 

    return render(request,"show/index.html",{"param":sciencenews,"searchtype":searchtype,"keyword":keyword})

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

 

以上是关于Django模糊查询的主要内容,如果未能解决你的问题,请参考以下文章

Django模糊查询

django怎么模糊匹配json中的数据?

DjangoDjango中的模糊查询以及Q对象的简单使用

基于双下划线的模糊查询中关于查询年份year的注意事项

django全文检索

django之搜索引擎功能实现