2

我正在尝试在我的项目中实现 django-endless 分页。简单的分页工作(带有“显示更多”)但 twitter 风格(基于 ajax)给我带来了麻烦。

这是我的看法:

@page_template('userena/profil_page.html')  # just add this decorator
def public_details(request, username=None,
    template = 'userena/profil.html', extra_context=None):
    user = get_object_or_404(get_user_model(), username__iexact=username)

    userObjekat = User.objects.get(username=username)
    user_profil = userObjekat.get_profile()

    context = {
        'projekti': user_profil.projekat_set.all(),
    }
    if extra_context is not None:
        context.update(extra_context)

    return userena_views.profile_detail(request, extra_context=context, username=username, template_name='userena/profil.html')

正如建议的那样,我的模板分为两部分,“主要”一份和 AJAX 一份。这是主模板的一部分,它加载 _page 模板:

</li>
{% include page_template %}
</li>

和 _page 模板包括在内 - 我可以看到内容。

_page 模板:

{% load endless %}
<li id="projektiTab">
    <div class="ten columns">
    <ul class="accordion">
    {% paginate projekti %}
    {% for projekat in projekti %}
    <li>                        
        <div class="title">
            <h6> {{ projekat.naziv }}</h6>
        </div>
        <div class="content">
            <p>{{ projekat.opis }}</p>
        </div>
    </li>
    {% endfor %}
    {% show_more %}
<li>
</div>
</li>

Javascripts 也被加载( STATIC_URL 正在工作)并且在我使用的页面源中:

<script src="/static/js/endless-pagination.js"></script>
        <script>
        $.endlessPaginate({
            paginateOnScroll: true,
            paginateOnScrollChunkSize: 5
        });
        </script>

毕竟,滚动分页不起作用。我究竟做错了什么?

4

1 回答 1

2

当然,我犯了一些“小”错误,这些错误似乎微不足道,但事实并非如此。

主模板或包含 page_template 的父模板应包含以下内容:

<div class="endless_page_template">
    {% include page_template %}

    {% block js %}
    {{ block.super }}
    <script src="http://code.jquery.com/jquery-latest.js"></script>
    <script src="{{ STATIC_URL }}js/endless-pagination.js"></script>
    <script>$.endlessPaginate();</script>
    {% endblock %}
</div>

所以,它必须在一个具有特定类的 div 中,我昨天忽略了它。

page_template看起来像这样:

{% load endless %}

{% paginate projekti %}
{% for projekat in projekti %}
   {{ projekat.name }}
{% endfor %}
{% show_pages %}

这当然可以用一些 HTML 来美化(在我的例子中是 Zurb Foundation 的手风琴元素)。最后但并非最不重要的一点 - 观点:

@page_template('userena/profil_strana.html')  # name of the page_template
def public_details(request, username=None,
    template = 'userena/profil.html', extra_context=None):

    userObjekat = User.objects.get(username=username) # getting user object
    user_profil = userObjekat.get_profile() # getting user's profile
    context = {
        'projekti': user_profil.projekat_set.all(), # and a list of objects to iterate thru
    }
    if extra_context is not None:
        context.update(extra_context)

    return userena_views.profile_detail(request, extra_context=context, username=username, template_name=template)

它有效。

于 2013-03-18T15:55:04.060 回答