gpt4 book ai didi

python - 使用 .distinct() 时 Django ORM 多次返回相同的值

转载 作者:太空宇宙 更新时间:2023-11-03 13:13:30 25 4
gpt4 key购买 nike

在一组对象上使用 .distinct() 时,相同的值会一遍又一遍地重复,这违背了使用 .distinct() 的目的。/p>

我正在从事的项目中的一个示例:

In [5]: Section.objects.filter(module=15).values('section').distinct()
Out[5]: [{'section': '1'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, {'section': '2'}, '...(remaining elements truncated)...']

为什么它返回每个值而不是只返回不同的值?

作为引用,这是我的模型:

class Section(models.Model):
module = models.ForeignKey(Module, on_delete=models.CASCADE)
title = models.CharField(max_length=400)
section = models.CharField(max_length=3)
topic = models.CharField(max_length=3)
subtopic = models.CharField(max_length=3)
subsubtopic = models.CharField(max_length=3)
language = models.CharField(max_length=2)
def __str__(self):
return self.sectionid() + " - " + self.title
def sectionid(self):
return self.module.moduleid + ": " + self.justsectionid()
def justsectionid(self):
return self.section + "." + self.topic + "." + self.subtopic + \
self.subsubtopic + "-" + self.language
class Meta:
ordering = ['section', 'topic', 'subtopic', 'subsubtopic', 'language']

最佳答案

Django ORM 的 .distinct() 存在问题,如果您使用元排序,就会发生此行为。为了使其按预期工作,您需要将排序重置为默认值。您可以通过对 .order_by() 的空白调用来执行此操作,如下所示:

In [6]: Section.objects.filter(module=15).order_by().values('section').distinct()
Out[6]: [{'section': '1'}, {'section': '2'}, {'section': '3'}]

关于python - 使用 .distinct() 时 Django ORM 多次返回相同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36898401/

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