我正在尝试使用以下代码进行 ajax 分页:
// AJAX pagination
$(".pages .prev").live('click', function(event) {
event.preventDefault()
var current_page = parseInt(getParameterByName('page'))-1;
$.get('/ajax/financial_page/', {'page': current_page}, function(response) {
$(".content table").replaceWith(response)
});
})
在我看来功能:
def financial_page(request):
"""
Returns a single financials page, without extra HTML (used in AJAX calls).
"""
page = int(request.GET.get('page', 1))
if request.user.is_superuser:
fs = FinancialStatements.objects.order_by('-date', 'statement_id')
else:
up = request.user.get_profile()
providers = up.provider.all()
fs = FinancialStatements.objects.filter(provider__in=providers).order_by('-date', 'statement_id')
fs_objects, current_page_object, page_range = paginator(request, objects=fs, page=page, number_per_page=30)
data = { 'fs':fs_objects,
'page_range': page_range,
'current_page': current_page_object,
}
page = render_to_string('financial_section.html', data, RequestContext(request))
return HttpResponse(simplejson.dumps([page]))
但是,我遇到了两个问题。首先是它response
不是真正的 HTML,并且有一堆n\t\t\n\t\t\n\t\n\t\n\t\n\t\t\n\t\
等。此外,我在跟踪当前页面/根据需要更改 url 时遇到了麻烦。我将如何在这里建立一个功能性的 ajax 分页?
更新:我通过做response = $.parseJSON(response);
. 我将如何跟踪我在哪个页面上?