gpt4 book ai didi

python - 如何获取按特定对象的相交标签数量排序的查询集?

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

我有带有一些标签的 Post 对象。我需要获取按特定帖子的交叉标签数量排序的其他帖子的查询集。

例如,有 4 个带有下一个标签的帖子:

  1. 房子 花园 夏天
  2. 园林植物
  3. 夏季 房屋空调
  4. 游戏冬季雪球

因此,如果主帖子是第一篇,排序的查询集应该是:

3,2,4

有没有办法用 django ORM 来做到这一点?

最佳答案

我已经编写了下一个函数:

class Post(models.Model):
...
def get_similar_posts(self, n_posts):
posts_tagged_similarly = Post.objects.filter(tags__in=self.tags.all())
other_posts = Post.objects.exclude(pk__in=posts_tagged_similarly)
union = posts_tagged_similarly.exclude(pk=self.pk).annotate(n_tags=models.Count('tags')).\
union(other_posts.annotate(n_tags=models.Value(0, models.IntegerField()))).order_by('-n_tags', '-published')
return union[:n_posts]

看起来很可怕,但确实有效!

关于python - 如何获取按特定对象的相交标签数量排序的查询集?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58294049/

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