gpt4 book ai didi

python - 在 json 中按计数排序

转载 作者:太空宇宙 更新时间:2023-11-04 01:38:02 24 4
gpt4 key购买 nike

我正在使用 tastypie 从我的 django 模型创建 json,但是我遇到了一个我认为应该有一个简单修复的问题。

我有一个 Blogs 对象,它有 Comment 对象子对象。我希望能够用我的 json 做这样的事情:

/api/v1/blogs/?order_by=comment_count

但我不知道如何对不属于原始评论/博客模型的字段进行排序。我在 dehydrate 方法中自己创建了 comment_count,该方法只接受评论数组并返回 comments.count()

任何帮助将不胜感激 - 我似乎找不到任何解释。

最佳答案

如果我理解正确,这应该有所帮助:

Blog.objects.annotate(comment_count=Count('comments')).order_by('comment_count')

关于python - 在 json 中按计数排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7932224/

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