简体   繁体   English

如何向后检索ManyToMany关系中的对象数

[英]How to retrieve the number of objects in a ManyToMany relationship backwards

I have two models: 我有两个模型:

class Tag(models.Model):
    """ This class rapresent a tag that can be applied to a product's
        category """

    name = models.SlugField()

class Product(models.Model):
    """ This class rapresent a product """

    product_id = models.IntegerField()
    image = models.ImageField(max_length=1024)
    price = models.DecimalField(max_digits=6, decimal_places=2)
    discount = models.DecimalField(max_digits=6, decimal_places=2)
    brand = models.CharField(max_length=200, default='')
    category = models.ManyToManyField(Tag)
    gender = models.CharField(max_length=200, default='')
    last_updated = models.DateTimeField(auto_now=False, auto_now_add=False,
                                        default=timezone.now)

I can't figure out how to retrieve the number of products that are bounded with every tag object. 我无法弄清楚如何检索每个标记对象绑定的产品数量。 I've tried something like: 我已经尝试过类似的东西:

Tag.objects.annotate(prod_num=Count(Tag.product_set.all())).order_by('prod_num')

but it seems that nothing works properly. 但似乎没有任何正常工作。 There is a nice and clean way to obtain a list of tag_name, num_of_prods? 有一种很好的方法来获取tag_name,num_of_prods的列表?

That's not how you use annotate . 那不是您使用annotate It should be: 它应该是:

Tag.objects.annotate(prod_num=Count('product')).order_by('prod_num')

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM