Django过滤外键

时间:2017-03-04 06:18:27

标签: django filtering

嗨,谢谢你的阅读。

以下是我的数据模型的相关部分。我想在论坛中提取给定部分的所有主题。但我很难让这个工作。这是数据模型:

class ForumSections(models.Model):
    heading = models.CharField(max_length=200)
    icon = models.CharField(max_length=50)
    hits = models.IntegerField(default=0)

    def __str__(self):
        return "Section: %s" % (self.heading)

class ForumThread(models.Model):
    heading = models.ForeignKey(ForumSections, on_delete=models.CASCADE)
    threadTitle = models.CharField(max_length=200)
    threadStatus = models.BooleanField(default=True)

    def __str__(self):
        return "Thread: %s Under Section: %s" % (self.threadTitle, self.heading

所以我想我想做点什么:

ForumThread.objects.filter(ForumSections__heading=heading)

然而,这会返回错误:

django.core.exceptions.FieldError: Cannot resolve keyword 'ForumSections' into field

非常感谢你的帮助 - 我被困在这里。

谢谢! 托米

1 个答案:

答案 0 :(得分:1)

这应该是

ForumThread.objects.filter(heading__heading=heading)

标题是模型 ForumThread 中的字段。