我正在编写一个简单的 Django 应用程序,并希望使用 Dajax / Dajaxice 添加 ajax 分页。我已经开始尝试从 Dajax 网站 (http://dajaxproject.com/pagination/) 实现简单的分页示例 - 但没有设法让它工作。每当我按下“下一步”按钮时,我都会收到以下 js 错误:
Uncaught TypeError: Cannot call method 'pagination' of undefined
我的 Django 项目名为“DoSomething”——它包含一个名为“core”的应用程序。
我已按照所有说明在此处安装 Dajaxice:https ://github.com/jorgebastida/django-dajaxice/wiki/installation
我在“core”目录中有一个名为“ajax.py”的python文件,其中包含以下代码:
from views import get_pagination_page
from dajax.core.Dajax import Dajax
from django.template.loader import render_to_string
from dajaxice.decorators import dajaxice_register
from django.utils import simplejson
@dajaxice_register
def pagination(request, p):
try:
page = int(p)
except:
page = 1
items = get_pagination_page(page)
render = render_to_string('posts_paginator.html', { 'items': items })
dajax = Dajax()
dajax.assign('#pagination','innerHTML',render)
return dajax.json()
我的 views.py 文件包含以下方法:
def index(request):
posts = Post.objects.order_by('id').reverse()
items = get_pagination_page(1)
return render_to_response('index.html', locals(), context_instance=RequestContext(request))
def get_pagination_page(page=1):
from django.core.paginator import Paginator, InvalidPage, EmptyPage
from django.template.loader import render_to_string
items = Post.objects.order_by('id').reverse()
paginator = Paginator(items, 10)
try:
page = int(page)
except ValueError:
page = 1
try:
items = paginator.page(page)
except (EmptyPage, InvalidPage):
items = paginator.page(paginator.num_pages)
return items
我的索引模板包含以下内容:
<div id="pagination">
{% include "posts_paginator.html" %}
</div>
我的 posts_paginator.html 模板包含以下链接,用于触发分页方法:
{% for i in items.object_list %}
{{ i }}<br>
{% endfor %}
{% if items.has_next %}
<a href="#" onclick="Dajaxice.core.pagination(Dajax.process,{'p':{{ items.next_page_number }}})">next</a>
{% endif %}
我的问题是,在 onClick 值中,我应该如何引用分页方法(来自我的 ajax.py 文件)。我找不到任何东西来解释这一点 - 我已经尝试了我能想到的所有项目名称/应用程序名称的组合!
谢谢!:)