我有两个模型Property
和Image
,与外键相关联,因此每个Property
都有多个Image
个实例。我正在尝试检索所有属性的查询集 - 列出所有字段 - 以及每个属性具有的图像数。我知道我可以将它作为两个不同的查询来执行,但我不认为这是一种特别优雅的方法,并且由于通过XMLHttpRequest检索此信息而证明效率有点低。
模型定义如下:
class Property(models.Model):
title = models.CharField('title', max_length=255)
created = models.DateTimeField('created', auto_now_add=True)
modified = models.DateTimeField('modified', auto_now=True)
class Meta:
pass
class Image(models.Model):
prop_id = models.ForeignKey(Property)
image_file = models.ImageField('image file', upload_to='/path/to/image/')
class Meta:
pass
我已按照此处发布的答案:Django Aggregation Across Reverse Relationship,因为我认为这是一个类似的问题,但我发现这会返回一个空的查询集。
感谢任何人提供的帮助。
修改
我跑的查询是:
Property.objects.all().annotate(image_count=Count('image')).order_by('-image_count')
编辑2:
经过一些实验,我找到了一个解决方案,但我很确定这可以作为一个错误/未记录的问题:
Property.objects.all().annotate(Count('image')).order_by('-image__count')
Property.objects.all().annotate(total_images=Count('image')).order_by('-total_images')
这两者都有效,但命名注释image_count
却没有。如果不深入研究Django源代码,我无法真正猜测为什么会发生这种情况。
答案 0 :(得分:1)
您发布的代码应该有效 - 在任何情况下,它都不应返回空的查询集,因为注释不会影响对主查询的过滤。
愚蠢的问题,但你确定数据库中有属性元素吗?