检查 django 中的空查询集

Posted

技术标签:

【中文标题】检查 django 中的空查询集【英文标题】:check for empty querysets in django 【发布时间】:2012-04-14 15:49:43 【问题描述】:

我的模型设备有一个自定义管理器。如果返回的查询集为空,我想返回一个不同的对象。问题是空查询集不会被评估为空。

我查看了这些线程以了解如何检查查询集是否为空。 In Django, what is the most efficient way to check for an empty query set? Checking for empty queryset in Django

这是我的模型:

    class DeviceField(models.Model):
    """
    Can be connected to any class and any field in that class. Specifies how the values and field names are returned for the field.
    """
    device = models.ForeignKey(Device, verbose_name=_("Device"))
    content_type = models.ForeignKey(ContentType, verbose_name=_("Class"))
    field_name = models.CharField(max_length=150, verbose_name=_("field name"))
    display_field = models.CharField(max_length=255, verbose_name=_("How to display the field name?"))
    display_value = models.CharField(max_length=255, verbose_name=_("How to display the value?"))

    objects = DeviceFieldManager()

这是我的经理。看看我如何使用所有这些 if 语句来检查它是否为空。

class DeviceFieldManager(models.Manager):
    """
    Behaves like a normal manager. Except in the case that no such device field exists. Then it will return the standard value of the field.
    """
    def get_query_set(self):
        """
        Does the queryset overriding :). If empty, get the original values
        """
        queryset = super(DeviceFieldManager,self).get_query_set()
        try:
            a = queryset[0]
            print "we have something here"
        except IndexError:
            print "It is frigging empty"
        if queryset == super(DeviceFieldManager, self).none():
            print "this queryset is just like an empty one"
        if not queryset:
            print "not queryset"
        if not queryset.count():
            print "not queryset count"
        if queryset:
            print "if queryset"
        if queryset.exists():
            print "queryset exists"
        else:
            print "A value is return, we don't need to do anything!"
        print queryset.count()
        print super(DeviceFieldManager, self).none()
        print queryset == super(DeviceFieldManager, self).none()
        return queryset

这是来自外壳的。对于“mobile”(存在)和“cow”(不存在)设备,Manager 显示相同的行为。当我尝试打印查询集的第一个值时,我得到了“cow”的预期 IndexError。

In [8]: a= DeviceField.objects.filter(device__name="mobile")
we have something here
if queryset
queryset exists
1
[]
False

In [9]: a[0]
Out[9]: <DeviceField: DeviceField object>

In [10]: a= DeviceField.objects.filter(device__name="cow")
we have something here
if queryset
queryset exists
1
[]
False

In [11]: a[0]
---------------------------------------------------------------------------
IndexError                                Traceback (most recent call last)
/<ipython-input-11-5ccf417d7af1> in <module>()
----> 1 a[0]

/local/lib/python2.7/site-packages/django/db/models/query.pyc in __getitem__(self, k)
    188             qs = self._clone()
    189             qs.query.set_limits(k, k + 1)
--> 190             return list(qs)[0]
    191         except self.model.DoesNotExist, e:
    192             raise IndexError(e.args)

IndexError: list index out of range

我在这里做错了什么?如果查询集为空,我如何签入管理器?

非常感谢:)

【问题讨论】:

【参考方案1】:

经理的get_query_set 被称为before filtering,因此您需要以某种方式侵入 QuerySet 本身(或制作将进行检查的外部函数)。

【讨论】:

以上是关于检查 django 中的空查询集的主要内容,如果未能解决你的问题,请参考以下文章

在 Django 中检查空查询集的正确方法是啥?

如何使用连接表检查房间查询中的空参数?

在Django中通过反向存在检查过滤查询集

有没有办法检查字符串是不是是 django 查询集的有效过滤器?

检查 Hasura 中的空数组

检查 MS Access SQL 语句中的空值