gpt4 book ai didi

django-views - 如何使用基于类的 View 和 django-filter 的简单示例?

转载 作者:行者123 更新时间:2023-12-04 13:50:14 24 4
gpt4 key购买 nike

文档中的示例,https://django-filter.readthedocs.org/en/latest/usage.html ,我认为是基于函数的 View 。我目前正在研究如何使用基于类的 View 来做到这一点。

def product_list(request):
f = ProductFilter(request.GET, queryset=Product.objects.all())
return render_to_response('my_app/template.html', {'filter': f})

最佳答案

多一点挖掘,我已经设法回答它。我已经使用了这里的代码 https://github.com/rasca/django-enhanced-cbv .

我添加了list.py的内容进入我的主应用程序 main_app/filter_mixin.py
然后在应用程序中,我将搜索添加到 ListView 中,我添加了文件 filter.py像这样(与文档相同)

from django_filters import FilterSet
from .models import Contact


class ContactFilter(FilterSet):
class Meta:
model = Contact
fields = ['name_first', 'name_last']

现在 view.py变成:
from vanilla import ListView

from .filter import ContactFilter
from galleria.filter_mixin import ListFilteredMixin


class ContactList(ListFilteredMixin, ListView):
filter_set = ContactFilter

关于django-views - 如何使用基于类的 View 和 django-filter 的简单示例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24305854/

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