gpt4 book ai didi

python - Django - 类型错误 : object of type 'NoneType' has no len() occurred while doing Pagination

转载 作者:太空宇宙 更新时间:2023-11-03 15:41:47 25 4
gpt4 key购买 nike

TypeError: object of type 'NoneType' has no len() 当我将分页添加到 ListView 时发生。这发生在我单击 next 按钮转到第 2 页时。它应该还有两个结果要显示。

我猜这是因为 search 的值被删除或 queryset 以某种方式变为 none,当我单击下一步(转到第 2 页),然后返回 none

错误: enter image description here

搜索表单: enter image description here

书籍/浏览量:

class SearchResultView(generic.ListView):
template_name = 'book/search.html'
model = Book
context_object_name = 'book_list'
paginate_by = 2

def get_queryset(self):
queryset = super().get_queryset()
search = self.request.GET.get('search')
if search:
return Book.objects.filter(
title__icontains=search
)

book/templates/book.html:

<form class="form-inline my-2 my-lg-0" method="get" action="{% url 'book:search' %}">{% csrf_token %}
<input style="font-size: 12px; width: 200px" class="form-control mr-sm-2" name="search" type="search" placeholder="Book Name" aria-label="Search">
<button class="btn btn-outline-primary my-2 my-sm-0" type="submit">Search</button>
</form>

book/templates/search.html:

<div id="customContents">
{% block customContents %}
{% if book_list %}
<ul>
{% for book in book_list %}
<li>{{ book.title }}</li>
{% empty %}
{% endfor %}
</ul>

{% if is_paginated %}

<div class="pagination">
<span class="page-links">
{% if page_obj.has_previous %}
<a href="?page={{ page_obj.previous_page_number }}">previous</a>
{% endif %}
{% if page_obj.has_next %}
<a href="?page={{ page_obj.next_page_number }}">next</a>
{% endif %}
</span>
</div>
{% endif %}
{% else %}
<h3> No result found. </h3>
{% endif %}
{% endblock %}
</div>

书/网址:

app_name = 'book'
urlpatterns = [
path('', views.HomePageView.as_view(), name='home'),
path('search/', views.SearchResultView.as_view(), name='search'),
path('<slug:slug>/', views.BookDetailView.as_view(), name='detail'),
]

只有这样才能正常工作:

class SearchResultView(generic.ListView):
template_name = 'book/search.html'
model = Book
context_object_name = 'book_list'
paginate_by = 2
queryset = Book.objects.filter(
title__icontains='Python'
)

最佳答案

您覆盖了查询字符串中的 search 参数,因为您没有重复它。随着时间的推移积累了一堆答案in this question关于如何处理。

这是你要纠正的错误:

<a href="?page={{ page_obj.previous_page_number }}">previous</a>

(“下一个”链接也是如此)。

然后一切都应该像宣传的那样工作。

或者,您可以使搜索参数成为 URL 本身的一部分,但这具有使搜索可缓存的副作用(这取决于您的网站是好是坏)并且需要 javascript 将输入移动到 url。

要完全在 Django 中执行此操作,您将搜索结果传输到 RedirectView除了验证搜索参数然后重定向到实际的搜索列表外,它什么都不做。

同样,这种方法也有一些副作用,最显着的是对后退按钮的影响。

因此,我建议您查看链接答案中的查询字符串修改,如果您想走不同的路线,请根据您的喜好发布另一个问题。

关于python - Django - 类型错误 : object of type 'NoneType' has no len() occurred while doing Pagination,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52127980/

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