2

我在我的 Web 应用程序中同时使用 django-taggit 和 django-filter,它存储了法律决定。我的主要观点(下图)继承自股票django-filter FilterView,并允许人们通过法规和法规的一部分过滤决策。

class DecisionListView(FilterView):
    context_object_name = "decision_list"
    filterset_class = DecisionFilter
    queryset = Decision.objects.select_related().all()

    def get_context_data(self, **kwargs):
        # Call the base implementation to get a context
        context = super(DecisionListView, self).get_context_data(**kwargs)
        # Add in querysets for all the statutes
        context['statutes'] = Statute.objects.select_related().all()
        context['tags'] = Decision.tags.most_common().distinct()
        return context

当添加决策时,我还会按主题标记决策,并且我希望人们也能够对其进行过滤。我目前有以下内容models.py

class Decision(models.Model):
    citation = models.CharField(max_length = 100)
    decision_making_body = models.ForeignKey(DecisionMakingBody)
    statute = models.ForeignKey(Statute)
    paragraph = models.ForeignKey(Paragraph)
    ...
    tags = TaggableManager()


class DecisionFilter(django_filters.FilterSet):
    class Meta:
        model = Decision
        fields = ['statute', 'paragraph']

我尝试将“标签”添加到fields列表中,DecisionFilter但没有任何效果,大概是因为 TaggableManager 是管理器而不是数据库中的字段。我没有在文档中找到任何涵盖此内容的应用程序。是否可以过滤 taggit 标签?

4

1 回答 1

4

您应该能够使用“tags__name”作为搜索/过滤字段。查看http://django-taggit.readthedocs.org/en/latest/api.html#filtering上的过滤部分

于 2013-12-13T06:17:13.450 回答