我正在尝试使用以下代码进行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);
计算出第一个。我如何跟踪我所在的页面?
答案 0 :(得分:2)
要跟踪页面,可以使用AJAX函数在单击时增加/减少变量。试试这个:
var counter="0";
$(document.body).on('click', ".pages .prev, .pages .next", function(event) {
if($(this).hasClass('prev')
counter--;// <--decrement for clicking previous button
else if($(this).hasClass('next')
counter++; // <--increment for clicking next button
event.preventDefault()
$.get('/ajax/financial_page/', {'page': counter}, function(response) {
$(".content table").replaceWith(response)
});
})
我也不会使用live
方法,因为它在jQuery 1.7中已被弃用。它已被on
方法取代。请在此处查看jQuery on()
API:http://api.jquery.com/on/
答案 1 :(得分:2)
查看本教程关于“使用jQuery,PHP和MySQL的Ajax Scroll Paging”,它可以简化您的工作: http://www.bewebdeveloper.com/tutorial-about-ajax-scroll-paging-using-jquery-php-and-mysql
以下是必不可少的:
var is_loading = false; // initialize is_loading by false to accept new loading
var limit = 4; // limit items per page
$(function() {
$(window).scroll(function() {
if($(window).scrollTop() + $(window).height() == $(document).height()) {
if (is_loading == false) { // stop loading many times for the same page
// set is_loading to true to refuse new loading
is_loading = true;
// display the waiting loader
$('#loader').show();
// execute an ajax query to load more statments
$.ajax({
url: 'load_more.php',
type: 'POST',
data: {last_id:last_id, limit:limit},
success:function(data){
// now we have the response, so hide the loader
$('#loader').hide();
// append: add the new statments to the existing data
$('#items').append(data);
// set is_loading to false to accept new loading
is_loading = false;
}
});
}
}
});
});
答案 2 :(得分:0)
尝试使用javascript String.replace()方法:
// AJAX pagination
$(".pages .prev").live('click', function(event) {
event.preventDefault()
var current_page = parseInt(getParameterByName('page'))-1;
$.post('/ajax/financial_page/', {'page': current_page}, function(response) {
response = response.replace(/\n/g,'<br>').replace(/\t/,' ');
$(".content table").replaceWith(response)
});
})
答案 3 :(得分:0)
jQuery.get(url, [data], [callback], [type])
type :xml, html, script, json, text, _default。
如何尝试将最后一个参数定义为“html”?