1 # 使用Q查詢設計搜索框 2 3 # 使用stark時,用戶能夠自定義搜索字段配置,而配置的字段是一個列表,所以要使用到方法二 4 from django.db.models import Q 5 6 # 方法一 7 Book.objects.filter(Q(title='python')|Q(price=111)) 8 9 # 方法二 10 q = Q() 11 q.connection = 'or' # 默認下面兩個篩選條件是且,這裏給改爲或 12 q.children.append(('title', 'python')) # 徹底匹配 13 q.children.append(('price', 111)) 14 Book.objects.all().filter(q) 15 16 # 方法一和方法二的區別: 17 # 方法一的字段不是字符串;方法二的字段是字符串 18 19 # 模糊匹配 20 Book.objects.filter(title__contains='p') # title中包含p的數據 21 Book.objects.filter(title__icontains='p') # title中包含p的數據(p不區分大小寫) 22 Book.objects.filter(title__startswith='python') # title中以python開頭的數據 23 Book.objects.filter(price__range=[1, 100]) # 價格在1到100之間的數據 24 Book.objects.filter(price__in=[10, 20]) # 價格是10或20的數據