django 视图仅在多个结果时返回

发布于 2024-10-17 19:16:56 字数 632 浏览 1 评论 0原文

我有一个项目和类别模型。

我希望仅返回有 1 个或更多项目的类别的结果...

这是我迄今为止所拥有的,但它似乎返回了错误的结果。

def category():
    return { 'categories': Category.objects.filter(project=True).all().order_by('id')}

有什么想法吗?

class Category(models.Model):
    title = models.CharField(max_length=30)
    slug  = models.SlugField(max_length=100, blank=True, null=True)

class Project(ImageModel):
    ...
    ...
    location = models.CharField(max_length=50, help_text='The city, town or area of the project.', null=True, blank=True)
    categories = models.ManyToManyField(Category)
    ...
    ...

I have a project and category model.

I am looking to only return results for the categories if they have 1 project or more...

this is what I have thus far, but it seems to return the wrong result.

def category():
    return { 'categories': Category.objects.filter(project=True).all().order_by('id')}

any ideas?

class Category(models.Model):
    title = models.CharField(max_length=30)
    slug  = models.SlugField(max_length=100, blank=True, null=True)

class Project(ImageModel):
    ...
    ...
    location = models.CharField(max_length=50, help_text='The city, town or area of the project.', null=True, blank=True)
    categories = models.ManyToManyField(Category)
    ...
    ...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

探春 2024-10-24 19:16:56

Category.project 是一个经理。

您可以使用注释。类似于:

Category.objects.annotate(projects=Count('project')).filter(projects__gt=1)

请参阅有关 注释的文档和聚合

Category.project is a Manager.

You can use annotations. Something like:

Category.objects.annotate(projects=Count('project')).filter(projects__gt=1)

See the docs on annotations and aggregations

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文