次のコードで 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]))
ただし、私が直面している2つの問題があります。1 つ目は、response
が実際には HTML ではなく、多数のn\t\t\n\t\t\n\t\n\t\n\t\n\t\t\n\t\
などがあることです。また、現在のページを追跡したり、必要に応じて URL を変更したりするのに問題があります。ここで機能的な ajax ページネーションを構築するにはどうすればよいですか?
更新:最初のものは、実行することでわかりましたresponse = $.parseJSON(response);
。ただし、どのページにいるのかをどのように追跡できますか?