0

我有两个由通用关系链接的模型:

from django.contrib.contenttypes import generic
from django.db import models

class Bar(models.Model):
    content_type   = models.ForeignKey(ContentType)
    object_id      = models.PositiveIntegerField()
    content_object = generic.GenericForeignKey()

    code  = models.CharField(max_length=10)
    value = models.IntegerField()

class Foo(models.Model):
    ... base fields ...
    bars = generic.GenericRelation(Bar)

现在我想获取所有'code为'xxx'的'bar.value',语法如下:

Foo.objects.filter(...foofilters..., bars__code='xxx').values('bars__value')

但这不起作用(Django 告诉我 'bars__value' 不是有效字段)。

有什么提示吗?

编辑:在 SQL 中我会做这样的事情:

SELECT bar.value
FROM   foo 
JOIN   django_content_type AS ct
    ON ct.app_label = 'foo_app'
   AND ct.model = 'foo'
JOIN   bar 
    ON bar.content_type_id = ct.id
   AND bar.object_id = foo.id
WHERE  bar.code = 'xxx'

或将 content_type_id 与另一个查询一起使用

4

1 回答 1

0

你不能那样做......想象一下 sql 在这种情况下应该是什么样子

您可能需要的是:

foo_ids = Foo.objects.filter(foo-filters).values_list('id', flat=True) # Getting Foo ids filtered
Bar.objects.filter(
          content_type=ContentType.objects.get_for_model(Foo),
          object_id__in=foo_ids,
          bar-filters
    ).values('value')
于 2011-10-14T10:03:13.353 回答