在类DetailView中使用django-filter

时间:2019-07-17 23:09:23

标签: django django-filter django-generic-views

我想使用Django和django-filter(例如stackoverflow过滤器)制作动态过滤表单 string.isalpha

并且我想在由DetailView渲染的模板上使用此过滤器,现在问题是我搜索了很多,但没有找到实现此目的的示例

在我的模板中,我列出了与“材料”类相关的所有“课程” 而且我想在同一模板上填写表格,以便可以过滤此列表

我的模板

{% for course in material_detail.courses_set.all %}
<div class="course">
    <h5>{{ course.course_name }}</h5>
    <p>{{ course.course_description }} </p>            
</div>
<hr/>
{% endfor %}

我有两个模型“材料”和“课程” 我的models.py

class Materials(models.Model):
    materials_name          = models.CharField(max_length=200)
    materials_description   = models.CharField(max_length=200, null=True)
    slug_material           = models.SlugField(blank=True, unique=True)


class Courses(models.Model):
    course_name             = models.CharField(max_length=200)
    course_description      = models.CharField(max_length=300, null=True)
    material                = models.ForeignKey(Materials, on_delete = models.CASCADE)

我有一个Class DetailView 我的views.py

class MaterialsDetailView(DetailView):
    model               = Materials
    template_name       = 'tuts/material.html'
    context_object_name = 'material_detail'

我已经制作了一个filters.py文件并在其上进行了这段代码,但是我不知道如何将其与我的Class DetailView链接

import django_filters

from .models import Materials

class CourseFilter(django_filters.FilterSet):

class Meta:
    model = Materials
    fields = ['courses__course_name', 'courses__course_description']

注意: 我的模型和模板上有更多代码,我将其删除以使代码非常简单

2 个答案:

答案 0 :(得分:1)

您仅显示与材料相关的课程列表。因此,您可以使用f = CourseFilter(self.request.GET, queryset=Courses.objects.filter(material=material_pk))过滤相关课程。请注意,我使用的是CourseFilter而不是MaterialFilter

views.py

class MaterialsDetailView(DetailView):
    model = Materials
    template_name = 'tuts/material.html'
    context_object_name = 'material_detail'

    def get_context_data(self, **kwargs):
        context_data = super(MaterialsDetailView, self).get_context_data()
        material_pk = self.kwargs.get('pk', None)
        f = CourseFilter(self.request.GET, queryset=Courses.objects.filter(material=material_pk))
        context_data['filter'] = f
        return context_data

filters.py

class CourseFilter(django_filters.FilterSet):
    class Meta:
        model = Courses
        fields = []
    course_name = django_filters.CharFilter(field_name="course_name", lookup_expr="icontains")
    course_description = django_filters.CharFilter(field_name="course_description", lookup_expr="icontains")

在模板中,您可以访问filter.qs中的所有过滤查询集filter.form

中的相应表格

tuts / material.html

<form method="GET">
    {{ filter.form.as_p }}
    <input type="submit" />
</form>
{% for course in filter.qs %}
<div class="course">
    <h5>{{ course.course_name }}</h5>
    <p>{{ course.course_description }} </p>
</div>
<hr/>
{% endfor %}

答案 1 :(得分:0)

您可以改用ListView并使用get_queryset()进行过滤,然后调用get_context_data()将关键字参数作为上下文返回给模板。

然后只需为您需要的每个过滤器连接一个单独的URL conf。您可以为每个视图使用相同的模板,只需在模板中使用href链接到URL conf,将URL参数作为关键字参数传递,并在视图中使用self.kwargs ['name_of_parameter']进行访问。然后在视图中按该参数进行过滤以获取查询集,然后将其返回到模板。

博客示例:

class PostCategoryFilter(ListView):
    context_object_name = 'posts'
    template_name = 'blog/post_list.html'

    def get_queryset(self):
        return Post.objects.filter(category=self.kwargs['category_id'])

    def get_context_data(self, **kwargs):
        context = super(PostCategoryFilter, self).get_context_data(**kwargs)
        context['categories'] = Category.objects.all()
        context['filtered_category'] = Category.objects.get(id=self.kwargs['category_id'])

        return context

您可以在上下文中使用任何内容作为模板中的变量,因此,您将获得类别和经过过滤的帖子。