gpt4 book ai didi

python - Django-Tagging - count and ordering top "tags"(我有更干净的解决方案吗?)

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

我正在使用 Django-Tagging,我并不完全需要云,我只想要一个有限的列表,其中包含我的博客条目中使用的最流行的标签。

使用以下内容:

[(tag.name, int(tag.count)) for tag in Tag.objects.usage_for_model(Post, counts=True)]

它返回一个数组(注意我在开发时使用的是 Lorem Ipsum):

[(u'deposit', 5), (u'escorol', 1), (u'gratuitous', 8), (u'marquee', 2)]

但是为了订购和限制它,我需要这样做:

sorted([(tag.name, int(tag.count)) for tag in Tag.objects.usage_for_model(Post, counts=True)], key=lambda k:k[1], reverse=True)[:10]

有没有更简洁的方法来做到这一点?我觉得必须有。

最佳答案

如果您使用的是最新版本的 django,则可以使用聚合。 http://docs.djangoproject.com/en/dev/topics/db/aggregation该页面上的示例..

Book.objects.annotate(num_authors=Count('authors')).order_by('num_authors')

关于python - Django-Tagging - count and ordering top "tags"(我有更干净的解决方案吗?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1895638/

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