Django 1.10.1
在页面上,我准备了很多控件。其中一些被组织为动态变化的表单集。所以,我甚至不知道他们中有多少人在场。
我需要一个带AND,OR和NOT逻辑运算的链式过滤器。
例如,我需要这样的东西:
Entry.objects.filter(headline__startswith='What').exclude(pub_date__gte=datetime.date.today()).filter(pub_date__gte=datetime(2005, 1, 30)).filter(Q(pub_date=date(2005, 5, 2)) | Q(pub_date=date(2005, 5, 6))
过滤器的数量再次发生变化。
我计划像这样:循环通过request.POST并根据十几个条件准备一个字符串。相同的字符串:
"Entry.objects.filter(headline__startswith='What').exclude(pub_date__gte=datetime.date.today()).filter(pub_date__gte=datetime(2005, 1, 30)).filter(Q(pub_date=date(2005, 5, 2)) | Q(pub_date=date(2005, 5, 6))"
所以,字符串是正确的。但我无法使用exec()。 我在这里问:为什么它不起作用。答案是:它不起作用,直接运行Python代码。
我可以构建类似的东西:
entries = Entry.objects.filter( **kwargs )
但这只是一个过滤器。我无法想象如何链接这样的过滤器。
你能在这里帮助我吗?
答案 0 :(得分:1)
您可以在多行上链接查询集 - 根据视图逻辑添加其他查询。这些查询集在创建时不会执行,只有在调用它们时才会执行。
我不确定它是“最好”还是最恐怖的方式,但这样的事情对我来说效果很好。这是使用Django Rest Framework辅助方法,但它应该适用于:
def get(self, request, format=None, *args, **kwargs):
name = request.GET.get('name', None)
location = request.GET.get('location', None)
id = request.GET.get('id', None)
results = Model.objects.all().order_by('-created') # this would be the default with no filters on it
results = results.filter(name__iexact=name) if name else results
results = results.filter(location__icontains=location) if location else results
results = results.filter(id__exact=id) if id else results
# process/serialize/send response
不知道你会得到哪些参数可能会很棘手,但一个想法可能是循环你的kwargs
并在循环中遵循相同的模式 - 这是一个刺(注意我还没有测试过):
def get(self, request, format=None, *args, **kwargs):
results = Model.objects.all().order_by('-created') # this would be the default
for param, value in kwargs.items():
results = results.filter(***need to convert param to orm field***= value)