gpt4 book ai didi

python - 使用 dict 参数的具有 OR 条件的 Django 过滤器

转载 作者:太空狗 更新时间:2023-10-29 21:25:44 25 4
gpt4 key购买 nike

我的 Django 应用程序有一个函数,我可以在其中执行一些查询集操作并将其结果设置到 Memcache。因为它是一个函数,所以它必须是通用的。因此,为了使其可重用,我将一个字典作为参数传递给 filterexclude 操作。这是函数:

def cached_query(key, model, my_filter=None, exclude=None, order_by=None, sliced=50):
"""
:param key: string used as key reference to store on Memcached
:param model: model reference on which 'filter' will be called
:param my_filter: dictionary containing the filter parameters (eg.: {'title': 'foo', 'category': 'bar'}
:param sliced: integer limit of results from the query. The lower the better, since for some reason Django Memcached
won't store thousands of entries in memory
:param exclude: dictionary containing the exclude parameters (eg.: {'title': 'foo', 'category': 'bar'}
:param order_by: tuple containing the list of fields upon which the model will be ordered.
:return: list of models. Not a QuerySet, since it was sliced.
"""
result = cache.get(key, None)
if not result:
if my_filter:
result = model.objects.filter(**my_filter)
if exclude:
result = result.exclude(**exclude)
if order_by:
result = result.order_by(*order_by)
else:
result = model.objects.all()
result = result[:sliced]
cache.set(key, result, cache_timeout)
return result

如果我使用像 {'title': 'foo', 'name': 'bar'} 这样的简单字典过滤查询集,效果会很好。然而,情况并非总是如此。我需要使用 django.db.models.Q 实用程序对需要 OR 条件的更复杂查询执行过滤器。

那么,我如何将这些参数作为字典传递给过滤器。有什么办法吗?

最佳答案

您可以将字典重组为单个键值字典的列表,并对 Q 表达式内的每个 dict 使用解包,如下所示:

from functools import reduce
import operator

from django.db.models import Q

# your dict is my_filter
q = model.objects.filter(reduce(operator.or_,
(Q(**d) for d in [dict([i]) for i in my_filter.items()])))

reduce on or_ 在 OR 上加入 Q 表达式。

您还可以在具有 dictlist 的地方使用生成器表达式:

q = model.objects.filter(reduce(operator.or_, 
(Q(**d) for d in (dict([i]) for i in my_filter.items()))))

关于python - 使用 dict 参数的具有 OR 条件的 Django 过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38131563/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com