0

商品があるカテゴリのみをリストする必要があります。カテゴリに関連する製品がない場合、このカテゴリはリストされません。

この私のモデル:

class Category(models.Model):
    title = models.CharField()


class Product(models.Model):
    title = models.CharField()
    category = models.ManyToManyField(Category)

いくつかの提案?

4

1 に答える 1

0
catgories = Category.objects.filter(product__isnull=False)
# will return all those categories which have products
于 2013-03-28T23:14:36.053 に答える