gpt4 book ai didi

python - 无限滚动条不适用于 django

转载 作者:行者123 更新时间:2023-12-03 16:48:05 24 4
gpt4 key购买 nike

我问这个问题已经很长时间了,仍然没有得到答案。我正在尝试使用 Django 添加无限向下滚动,但使用以下代码无法正常工作。我只是将帖子分页到 10,然后它只显示我正在加载图标。当我向下滚动时它不起作用。你们能弄清楚这里出了什么问题吗?
View .py

class PostListView(ListView):
model = Post
context_object_name = 'post_list'
paginate_by = 10

def get_queryset(self):
return Post.objects.filter(create_date__lte=timezone.now()).order_by('-create_date')
帖子列表.html
{% extends 'base.html' %}
{% block content %}


<div class="container">
<div class="row infinite-container">
{% for post in post_list%}
<div class="col-md-6 infinite-item">
<div class="card mb-4 shadow-sm">
<img class="img-thumbnail" src="{{post.image.url}}"/>
<div class="card-body">
<h5>{{post.title}}</h5>
<p class="card-text">
{{post.description|truncatewords:20}}
</p>
</div>
</div>
</div>
{% endfor %}
</div>
{% if page_obj.has_next %}
true #this is showing me true it also means that it has next page.
<a class="infinite-more-link" href="?page={{page_obj.next_page_number}}"></a>
{% endif %}
<div class="d-flex justify-content-center" style="display:none;">
<div class="spinner-border" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
</div>

<script src="/static/js/jquery-2.2.4.min.js"></script>
<script src="/static/js/jquery.waypoints.min.js"></script>
<script src="/static/js/infinite.min.js"></script>
<script>
var infinite = new Waypoint.Infinite({
element: $('.infinite-container')[0],
handler: function(direction) {

},
offset: 'bottom-in-view',

onBeforePageLoad: function () {
$('.spinner-border').show();
},
onAfterPageLoad: function () {
$('.spinner-border').hide();
}

});

</script>


{% endblock content %}
如果需要更多信息而不是在评论 session 中告诉我,我将使用该信息更新我的问题。

最佳答案

我错过了加载静态所以加载它通过添加

{% load static%}
在内容块下方
<script src="{% static '/static/js/jquery-2.2.4.min.js'%}"></script>
<script src="{% static '/static/js/jquery.waypoints.min.js'%}"></script>
<script src="{% static '/static/js/infinite.min.js'%}"></script>

关于python - 无限滚动条不适用于 django,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63743839/

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