后端分页

两个接口

思路:

  1. 先得到最大页和最小页数(1, 20) --》 传递给前端, 这样前端就可以知道有多少个页数

  2. 通过传递页数得到当前页对应数据库的最大值和最小值

  3. 通过sql  limit 得到数据

class Pagination:
"""
explain:
obj = Pagination(1000, 20, 50)
print(obj.start)
print(obj.end)
obj.item_pages --> 求分页的页码
all_item :need the query library to count
"""
"""
all_item: 总count
current_page: 你的页数、
appear_page: 每页多少条数据
""" def __init__(self, all_item, current_page=1, appear_page=50):
try:
self.appear_page = appear_page
self.int = int(current_page)
self.all_item = all_item
page = self.int
except:
self.all_item = 0
page = 1
if page < 1:
page = 1 all_pager, c = divmod(all_item, self.appear_page)
if c > 0:
all_pager += 1 self.current_page = page
self.all_pager = all_pager @property
def start(self):
return (self.current_page -1) * self.appear_page @property
def end(self):
return self.current_page * self.appear_page @property
def item_pages(self):
all_pager, c = divmod(self.all_item, self.appear_page)
if c > 0:
all_pager += 1
return 1, all_pager+1 if __name__ == '__main__':
obj = Pagination(1001)
print(obj.start)
print(obj.end)
print(obj.item_pages)

前端分页 --》 数据一次性传给前端,然后前端分页

这个分页的原文链接: https://blog.csdn.net/qq_25065257/article/details/78329755

但是, 这段代码有问题, 当 numBtnCount: 4, 并且有21页的时候, 当前页数为18, 则会出现22页, 这里处理的不是很好, 当然作者也有自己的思考, 存在及合理, 我还写不出来呢

所以这里 numBtnCount: 3 ,比较合适, 还没有发现问题。

<!DOCTYPE html>
<html> <head>
<meta charset="UTF-8">
<title>pagination-nick</title>
<style>
button {
padding: 5px;
margin: 5px;
} .active-nick {
color: red;
} input {
width: 50px;
text-align: center;
}
</style>
</head> <body>
<div class="pagination-nick"></div>
<script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
//定义一个分页方法,可多次调用
function paginationNick(opt) {
//参数设置
var pager = {
paginationBox: '', //分页容器-- 必填
mainBox: '', //内容盒子--必填
numBtnBox: '', //数字按钮盒子-- 必填
btnBox: '', //按钮盒子 --必填
ipt: '', //input class-- 必填
goBtn: '', //go btn class --必填
currentBtn: '', //当前按钮class name --必填
pageCount: 6, //每页显示几条数据
numBtnCount: 4, //当前页左右两边各多少个数字按钮
currentPage: 0, //当前页码data-page,首屏默认值
maxCount: 0, //ajax请求数据分成的最大页码
data: [] //ajax请求的数据
};
pager = $.extend(pager, opt);
//请求数据页面跳转方法
function goPage(btn) {
//obj为ajax请求数据
var obj = { other: {}, value: [
{"1": "1"},
{"2": "1"},
{"3": "1"},
{"4": "1"},
{"5": "1"},
{"16": "1"},
{"166": "1"},
{"134": "1"},
{"134": "1"},
{"13": "1"},
{"12": "1"},
{"123": "1"},
{"12": "1"},
{"17": "1"},
{"178": "1"},
{"14": "1"},
{"100": "1"},
{"101": "1"},
{"102": "1"},
{"103": "1"},
{"104": "1"},
{"105": "1"},
{"106": "1"},
{"107": "1"},
{"108": "1"},
{"109": "1"},
{"110": "1"},
{"111": "1"},
{"112": "1"},
] };
//将展示的数据赋值给pager.data (array)
pager.data = obj.value;
//设置ajax请求数据分成的最大页码
pager.maxCount = pager.data.length % pager.pageCount ? parseInt(pager.data.length / pager.pageCount) + 1 :
pager.data.length / pager.pageCount; // 设置当前页码
if(!isNaN(btn)) { //数字按钮
pager.currentPage = parseInt(btn);
} else {
switch(btn) {
case 'first':
pager.currentPage = 0;
break;
case 'prev':
if(pager.currentPage > 0) {
--pager.currentPage;
}
break;
case 'next':
if(pager.currentPage + 1 < pager.maxCount) {
++pager.currentPage;
}
break;
case 'last':
pager.currentPage = pager.maxCount - 1;
break;
}
}
//创建数字按钮
createNumBtn(pager.currentPage);
//赋值给页码跳转输入框的value,表示当前页码
$('.' + pager.btnBox + ' .' + pager.ipt).val(pager.currentPage + 1);
// 内容区填充数据
var arr = [],
str = '';
arr = pager.data.slice(pager.pageCount * pager.currentPage,
pager.data.length - pager.pageCount * (pager.currentPage + 1) > -1 ?
pager.pageCount * (pager.currentPage + 1) : pager.data.length); // 这里是控制页面显示内容div的地方
arr.forEach(function(v) {
str += '<div>' + v + '</div>';
});
$('.' + pager.mainBox).html(str);
}
//创建非数字按钮和数据内容区
function createOtherBtn() {
$('.' + pager.paginationBox).html('</div><div class="' + pager.mainBox + '"></div><div class="' + pager.btnBox + '"><button data-page="first" class="first-btn">首页</button><button data-page="prev" class="prev-btn">上一页</button><span class="' + pager.numBtnBox + '"></span><button data-page="next" class="next-btn">下一页</button><input type="text" placeholder="请输入页码" class="' + pager.ipt + '"><button class="' + pager.goBtn + '">确定go</button><button data-page="last" class="last-btn">尾页</button>');
//ipt value变化并赋值给go btn data-page
$('.' + pager.btnBox + ' .' + pager.ipt).change(function() {
if(!isNaN($(this).val())) { //是数字
if($(this).val() > pager.maxCount) { //限制value最大值,跳转尾页
$(this).val(pager.maxCount);
}
if($(this).val() < 1) { //限制value最小值,跳转首页
$(this).val(1);
}
} else { //非数字清空value
$(this).val('');
}
$('.' + pager.btnBox + ' .' + pager.goBtn).attr('data-page', $(this).val() ? $(this).val() - 1 : '');
});
//每个btn绑定请求数据页面跳转方法
$('.' + pager.btnBox + ' button').each(function(i, v) {
$(this).click(function() {
//有值且不是上一次的页码时才调用
if(v.getAttribute('data-page') && v.getAttribute('data-page') != pager.currentPage) {
goPage(v.getAttribute('data-page'));
}
});
});
}
//创建数字按钮
function createNumBtn(page) {
//page是页面index从0开始,这里的page加减一要注意
var str = '';
if(pager.maxCount > pager.numBtnCount * 2) { //若最大页码数大于等于固定数字按钮总数(pager.numBtnCount*2+1)时
//此页左边右边各pager.numBtnCount个数字按钮
if(page - pager.numBtnCount > -1) { //此页左边有pager.numBtnCount页 page页码从0开始
for(var m = pager.numBtnCount; m > 0; m--) {
str += '<button data-page="' + (page - m) + '">' + (page - m + 1) + '</button>';
}
} else {
for(var k = 0; k < page; k++) {
str += '<button data-page="' + k + '">' + (k + 1) + '</button>';
}
}
str += '<button data-page="' + page + '" class="' + pager.currentBtn + '" disabled="disabled">' + (page + 1) + '</button>'; //此页
if(pager.maxCount - page > 3) { //此页右边有pager.numBtnCount页 page页码从0开始
for(var j = 1; j < pager.numBtnCount + 1; j++) {
str += '<button data-page="' + (page + j) + '">' + (page + j + 1) + '</button>';
}
} else {
for(var i = page + 1; i < pager.maxCount; i++) {
str += '<button data-page="' + i + '">' + (i + 1) + '</button>';
}
}
/*数字按钮总数小于固定的数字按钮总数pager.numBtnCount*2+1时,
这个分支,可以省略*/
if(str.match(/<\/button>/ig).length < pager.numBtnCount * 2 + 1) {
str = '';
if(page < pager.numBtnCount) { //此页左边页码少于固定按钮数时
for(var n = 0; n < page; n++) { //此页左边
str += '<button data-page="' + n + '">' + (n + 1) + '</button>';
}
str += '<button data-page="' + page + '" class="' + pager.currentBtn + '" disabled="disabled">' + (page + 1) + '</button>'; //此页
for(var x = 1; x < pager.numBtnCount * 2 + 1 - page; x++) { //此页右边
str += '<button data-page="' + (page + x) + '">' + (page + x + 1) + '</button>';
}
}
if(pager.maxCount - page - 1 < pager.numBtnCount) {
for(var y = pager.numBtnCount * 2 - (pager.maxCount - page - 1); y > 0; y--) { //此页左边
str += '<button data-page="' + (page - y) + '">' + (page - y + 1) + '</button>';
}
str += '<button data-page="' + page + '" class="' + pager.currentBtn + '" disabled="disabled">' + (page + 1) + '</button>'; //此页
for(var z = page + 1; z < pager.maxCount; z++) { //此页右边
str += '<button data-page="' + z + '">' + (z + 1) + '</button>';
}
}
}
} else {
str = '';
for(var n = 0; n < page; n++) { //此页左边
str += '<button data-page="' + n + '">' + (n + 1) + '</button>';
}
str += '<button data-page="' + page + '" class="' + pager.currentBtn + '" disabled="disabled">' + (page + 1) + '</button>'; //此页
for(var x = 1; x < pager.maxCount - page; x++) { //此页右边
str += '<button data-page="' + (page + x) + '">' + (page + x + 1) + '</button>';
}
} $('.' + pager.numBtnBox).html(str); //每个btn绑定请求数据页面跳转方法
$('.' + pager.numBtnBox + ' button').each(function(i, v) {
$(this).click(function() {
goPage(v.getAttribute('data-page'));
});
}); //按钮禁用
$('.' + pager.btnBox + ' button').not('.' + pager.currentBtn).attr('disabled', false);
if(!page) { //首页时
$('.' + pager.btnBox + ' .first-btn').attr('disabled', true);
$('.' + pager.btnBox + ' .prev-btn').attr('disabled', 'disabled');
}
if(page == pager.maxCount - 1) { //尾页时
$('.' + pager.btnBox + ' .last-btn').attr('disabled', true);
$('.' + pager.btnBox + ' .next-btn').attr('disabled', true);
}
} //首屏加载
createOtherBtn(); //首屏加载一次非数字按钮即可
goPage(); //请求数据页面跳转满足条件按钮点击都执行,首屏默认跳转到currentPage
}
//调用
paginationNick({
paginationBox: 'pagination-nick', //分页容器--必填
mainBox: 'main-box-nick', //内容盒子--必填
numBtnBox: 'num-box-nick', //数字按钮盒子-- 必填
btnBox: 'btn-box-nick', //按钮盒子 --必填
ipt: 'page-ipt-nick', //input class-- 必填
goBtn: 'go-btn-nick', //go btn class --必填
currentBtn: 'active-nick' //当前按钮class name --必填
});
</script>
</body> </html>

找到问题了

169行有错误, 以改正 --》 当时作者写的是3, 应该改为paser.numBtnCount;

<!DOCTYPE html>
<html> <head>
<meta charset="UTF-8">
<title>pagination-nick</title>
<style>
button {
padding: 5px;
margin: 5px;
} .active-nick {
color: red;
} input {
width: 50px;
text-align: center;
}
</style>
</head> <body>
<div class="pagination-nick"></div>
<script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
//定义一个分页方法,可多次调用
function paginationNick(opt) {
//参数设置
var pager = {
paginationBox: '', //分页容器-- 必填
mainBox: '', //内容盒子--必填
numBtnBox: '', //数字按钮盒子-- 必填
btnBox: '', //按钮盒子 --必填
ipt: '', //input class-- 必填
goBtn: '', //go btn class --必填
currentBtn: '', //当前按钮class name --必填
pageCount: 6, //每页显示几条数据
numBtnCount: 4, //当前页左右两边各多少个数字按钮
currentPage: 0, //当前页码data-page,首屏默认值
maxCount: 0, //ajax请求数据分成的最大页码
data: [] //ajax请求的数据
};
pager = $.extend(pager, opt);
//请求数据页面跳转方法
function goPage(btn) {
//obj为ajax请求数据
var obj = { other: {}, value: [
{"1": "1"},
{"2": "1"},
{"3": "1"},
{"4": "1"},
{"5": "1"},
{"16": "1"},
{"166": "1"},
{"134": "1"},
{"134": "1"},
{"13": "1"},
{"12": "1"},
{"123": "1"},
{"12": "1"},
{"17": "1"},
{"178": "1"},
{"14": "1"},
{"100": "1"},
{"101": "1"},
{"102": "1"},
{"103": "1"},
{"104": "1"},
{"105": "1"},
{"106": "1"},
{"107": "1"},
{"108": "1"},
{"109": "1"},
{"110": "1"},
{"111": "1"},
{"112": "1"},
] };
//将展示的数据赋值给pager.data (array)
pager.data = obj.value;
//设置ajax请求数据分成的最大页码
pager.maxCount = pager.data.length % pager.pageCount ? parseInt(pager.data.length / pager.pageCount) + 1 :
pager.data.length / pager.pageCount; // 设置当前页码
if(!isNaN(btn)) { //数字按钮
pager.currentPage = parseInt(btn);
} else {
switch(btn) {
case 'first':
pager.currentPage = 0;
break;
case 'prev':
if(pager.currentPage > 0) {
--pager.currentPage;
}
break;
case 'next':
if(pager.currentPage + 1 < pager.maxCount) {
++pager.currentPage;
}
break;
case 'last':
pager.currentPage = pager.maxCount - 1;
break;
}
}
//创建数字按钮
createNumBtn(pager.currentPage);
//赋值给页码跳转输入框的value,表示当前页码
$('.' + pager.btnBox + ' .' + pager.ipt).val(pager.currentPage + 1);
// 内容区填充数据
var arr = [],
str = '';
arr = pager.data.slice(pager.pageCount * pager.currentPage,
pager.data.length - pager.pageCount * (pager.currentPage + 1) > -1 ?
pager.pageCount * (pager.currentPage + 1) : pager.data.length); // 这里是控制页面显示内容div的地方
arr.forEach(function(v) {
str += '<div>' + v + '</div>';
});
$('.' + pager.mainBox).html(str);
}
//创建非数字按钮和数据内容区
function createOtherBtn() {
$('.' + pager.paginationBox).html('</div><div class="' + pager.mainBox + '"></div><div class="' + pager.btnBox + '"><button data-page="first" class="first-btn">首页</button><button data-page="prev" class="prev-btn">上一页</button><span class="' + pager.numBtnBox + '"></span><button data-page="next" class="next-btn">下一页</button><input type="text" placeholder="请输入页码" class="' + pager.ipt + '"><button class="' + pager.goBtn + '">确定go</button><button data-page="last" class="last-btn">尾页</button>');
//ipt value变化并赋值给go btn data-page
$('.' + pager.btnBox + ' .' + pager.ipt).change(function() {
if(!isNaN($(this).val())) { //是数字
if($(this).val() > pager.maxCount) { //限制value最大值,跳转尾页
$(this).val(pager.maxCount);
}
if($(this).val() < 1) { //限制value最小值,跳转首页
$(this).val(1);
}
} else { //非数字清空value
$(this).val('');
}
$('.' + pager.btnBox + ' .' + pager.goBtn).attr('data-page', $(this).val() ? $(this).val() - 1 : '');
});
//每个btn绑定请求数据页面跳转方法
$('.' + pager.btnBox + ' button').each(function(i, v) {
$(this).click(function() {
//有值且不是上一次的页码时才调用
if(v.getAttribute('data-page') && v.getAttribute('data-page') != pager.currentPage) {
goPage(v.getAttribute('data-page'));
}
});
});
}
//创建数字按钮
function createNumBtn(page) {
//page是页面index从0开始,这里的page加减一要注意
var str = '';
if(pager.maxCount > pager.numBtnCount * 2) { //若最大页码数大于等于固定数字按钮总数(pager.numBtnCount*2+1)时
//此页左边右边各pager.numBtnCount个数字按钮
if(page - pager.numBtnCount > -1) { //此页左边有pager.numBtnCount页 page页码从0开始
for(var m = pager.numBtnCount; m > 0; m--) {
str += '<button data-page="' + (page - m) + '">' + (page - m + 1) + '</button>';
}
} else {
for(var k = 0; k < page; k++) {
str += '<button data-page="' + k + '">' + (k + 1) + '</button>';
}
}
str += '<button data-page="' + page + '" class="' + pager.currentBtn + '" disabled="disabled">' + (page + 1) + '</button>'; //此页
if(pager.maxCount - page > pager.numBtnCount) { //此页右边有pager.numBtnCount页 page页码从0开始
for(var j = 1; j < pager.numBtnCount + 1; j++) {
str += '<button data-page="' + (page + j) + '">' + (page + j + 1) + '</button>';
}
} else {
for(var i = page + 1; i < pager.maxCount; i++) {
str += '<button data-page="' + i + '">' + (i + 1) + '</button>';
}
}
/*数字按钮总数小于固定的数字按钮总数pager.numBtnCount*2+1时,
这个分支,可以省略*/
if(str.match(/<\/button>/ig).length < pager.numBtnCount * 2 + 1) {
str = '';
if(page < pager.numBtnCount) { //此页左边页码少于固定按钮数时
for(var n = 0; n < page; n++) { //此页左边
str += '<button data-page="' + n + '">' + (n + 1) + '</button>';
}
str += '<button data-page="' + page + '" class="' + pager.currentBtn + '" disabled="disabled">' + (page + 1) + '</button>'; //此页
for(var x = 1; x < pager.numBtnCount * 2 + 1 - page; x++) { //此页右边
str += '<button data-page="' + (page + x) + '">' + (page + x + 1) + '</button>';
}
}
if(pager.maxCount - page - 1 < pager.numBtnCount) {
for(var y = pager.numBtnCount * 2 - (pager.maxCount - page - 1); y > 0; y--) { //此页左边
str += '<button data-page="' + (page - y) + '">' + (page - y + 1) + '</button>';
}
str += '<button data-page="' + page + '" class="' + pager.currentBtn + '" disabled="disabled">' + (page + 1) + '</button>'; //此页
for(var z = page + 1; z < pager.maxCount; z++) { //此页右边
str += '<button data-page="' + z + '">' + (z + 1) + '</button>';
}
}
}
} else {
str = '';
for(var n = 0; n < page; n++) { //此页左边
str += '<button data-page="' + n + '">' + (n + 1) + '</button>';
}
str += '<button data-page="' + page + '" class="' + pager.currentBtn + '" disabled="disabled">' + (page + 1) + '</button>'; //此页
for(var x = 1; x < pager.maxCount - page; x++) { //此页右边
str += '<button data-page="' + (page + x) + '">' + (page + x + 1) + '</button>';
}
} $('.' + pager.numBtnBox).html(str); //每个btn绑定请求数据页面跳转方法
$('.' + pager.numBtnBox + ' button').each(function(i, v) {
$(this).click(function() {
goPage(v.getAttribute('data-page'));
});
}); //按钮禁用
$('.' + pager.btnBox + ' button').not('.' + pager.currentBtn).attr('disabled', false);
if(!page) { //首页时
$('.' + pager.btnBox + ' .first-btn').attr('disabled', true);
$('.' + pager.btnBox + ' .prev-btn').attr('disabled', 'disabled');
}
if(page == pager.maxCount - 1) { //尾页时
$('.' + pager.btnBox + ' .last-btn').attr('disabled', true);
$('.' + pager.btnBox + ' .next-btn').attr('disabled', true);
}
} //首屏加载
createOtherBtn(); //首屏加载一次非数字按钮即可
goPage(); //请求数据页面跳转满足条件按钮点击都执行,首屏默认跳转到currentPage
}
//调用
paginationNick({
paginationBox: 'pagination-nick', //分页容器--必填
mainBox: 'main-box-nick', //内容盒子--必填
numBtnBox: 'num-box-nick', //数字按钮盒子-- 必填
btnBox: 'btn-box-nick', //按钮盒子 --必填
ipt: 'page-ipt-nick', //input class-- 必填
goBtn: 'go-btn-nick', //go btn class --必填
currentBtn: 'active-nick' //当前按钮class name --必填
});
</script>
</body> </html>

后端分页, 一个接口分页, 一个接口拿数据

<!DOCTYPE html>
<html> <head>
<meta charset="UTF-8">
<title>pagination-nick</title>
<style>
button {
padding: 5px;
margin: 5px;
} .active-nick {
color: red;
} input {
width: 50px;
text-align: center;
}
</style>
</head> <body>
<div class="pagination-nick"></div>
<script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
//定义一个分页方法,可多次调用
function paginationNick(opt) {
//参数设置
var pager = {
paginationBox: '', //分页容器-- 必填
mainBox: '', //内容盒子--必填
numBtnBox: '', //数字按钮盒子-- 必填
btnBox: '', //按钮盒子 --必填
ipt: '', //input class-- 必填
goBtn: '', //go btn class --必填
currentBtn: '', //当前按钮class name --必填
pageCount: 15, //每页显示几条数据
numBtnCount: 4, //当前页左右两边各多少个数字按钮
currentPage: 0, //当前页码data-page,首屏默认值
maxCount: 0, //ajax请求数据分成的最大页码
data: [] //ajax请求的数据
};
pager = $.extend(pager, opt);
//请求数据页面跳转方法
function goPage(btn) {
//obj为ajax请求数据 //将展示的数据赋值给pager.data (array) var page_item = [1, 21]; //设置ajax请求数据分成的最大页码
pager.maxCount = page_item[1]; // 设置当前页码
if(!isNaN(btn)) { //数字按钮
pager.currentPage = parseInt(btn);
} else {
switch(btn) {
case 'first':
pager.currentPage = 0;
break;
case 'prev':
if(pager.currentPage > 0) {
--pager.currentPage;
}
break;
case 'next':
if(pager.currentPage + 1 < pager.maxCount) {
++pager.currentPage;
}
break;
case 'last':
pager.currentPage = pager.maxCount - 1;
break;
}
}
//创建数字按钮
createNumBtn(pager.currentPage);
//赋值给页码跳转输入框的value,表示当前页码
$('.' + pager.btnBox + ' .' + pager.ipt).val(pager.currentPage + 1); var NewcurrentPage = pager.currentPage + 1;
console.log(NewcurrentPage);
// 内容区填充数据 --> 这里是后端获取ajax的值, 然后填充到这里, 可以写函数
var arr = [],
str = '';
arr = [1, 2, 3, 4, 5, 6]; // 这里是控制页面显示内容div的地方
arr.forEach(function(v) {
str += '<div>' + v + '</div>';
});
$('.' + pager.mainBox).html(str);
}
//创建非数字按钮和数据内容区
function createOtherBtn() {
$('.' + pager.paginationBox).html('</div><div class="' + pager.mainBox + '"></div><div class="' + pager.btnBox + '"><button data-page="first" class="first-btn">首页</button><button data-page="prev" class="prev-btn">上一页</button><span class="' + pager.numBtnBox + '"></span><button data-page="next" class="next-btn">下一页</button><input type="text" placeholder="请输入页码" class="' + pager.ipt + '"><button class="' + pager.goBtn + '">确定go</button><button data-page="last" class="last-btn">尾页</button>');
//ipt value变化并赋值给go btn data-page
$('.' + pager.btnBox + ' .' + pager.ipt).change(function() {
if(!isNaN($(this).val())) { //是数字
if($(this).val() > pager.maxCount) { //限制value最大值,跳转尾页
$(this).val(pager.maxCount);
}
if($(this).val() < 1) { //限制value最小值,跳转首页
$(this).val(1);
}
} else { //非数字清空value
$(this).val('');
}
$('.' + pager.btnBox + ' .' + pager.goBtn).attr('data-page', $(this).val() ? $(this).val() - 1 : '');
});
//每个btn绑定请求数据页面跳转方法
$('.' + pager.btnBox + ' button').each(function(i, v) {
$(this).click(function() {
//有值且不是上一次的页码时才调用
if(v.getAttribute('data-page') && v.getAttribute('data-page') != pager.currentPage) {
goPage(v.getAttribute('data-page'));
}
});
});
}
//创建数字按钮
function createNumBtn(page) {
//page是页面index从0开始,这里的page加减一要注意
var str = '';
if(pager.maxCount > pager.numBtnCount * 2) { //若最大页码数大于等于固定数字按钮总数(pager.numBtnCount*2+1)时
//此页左边右边各pager.numBtnCount个数字按钮
if(page - pager.numBtnCount > -1) { //此页左边有pager.numBtnCount页 page页码从0开始
for(var m = pager.numBtnCount; m > 0; m--) {
str += '<button data-page="' + (page - m) + '">' + (page - m + 1) + '</button>';
}
} else {
for(var k = 0; k < page; k++) {
str += '<button data-page="' + k + '">' + (k + 1) + '</button>';
}
}
str += '<button data-page="' + page + '" class="' + pager.currentBtn + '" disabled="disabled">' + (page + 1) + '</button>'; //此页
if(pager.maxCount - page > pager.numBtnCount) { //此页右边有pager.numBtnCount页 page页码从0开始
for(var j = 1; j < pager.numBtnCount + 1; j++) {
str += '<button data-page="' + (page + j) + '">' + (page + j + 1) + '</button>';
}
} else {
for(var i = page + 1; i < pager.maxCount; i++) {
str += '<button data-page="' + i + '">' + (i + 1) + '</button>';
}
}
/*数字按钮总数小于固定的数字按钮总数pager.numBtnCount*2+1时,
这个分支,可以省略*/
if(str.match(/<\/button>/ig).length < pager.numBtnCount * 2 + 1) {
str = '';
if(page < pager.numBtnCount) { //此页左边页码少于固定按钮数时
for(var n = 0; n < page; n++) { //此页左边
str += '<button data-page="' + n + '">' + (n + 1) + '</button>';
}
str += '<button data-page="' + page + '" class="' + pager.currentBtn + '" disabled="disabled">' + (page + 1) + '</button>'; //此页
for(var x = 1; x < pager.numBtnCount * 2 + 1 - page; x++) { //此页右边
str += '<button data-page="' + (page + x) + '">' + (page + x + 1) + '</button>';
}
}
if(pager.maxCount - page - 1 < pager.numBtnCount) {
for(var y = pager.numBtnCount * 2 - (pager.maxCount - page - 1); y > 0; y--) { //此页左边
str += '<button data-page="' + (page - y) + '">' + (page - y + 1) + '</button>';
}
str += '<button data-page="' + page + '" class="' + pager.currentBtn + '" disabled="disabled">' + (page + 1) + '</button>'; //此页
for(var z = page + 1; z < pager.maxCount; z++) { //此页右边
str += '<button data-page="' + z + '">' + (z + 1) + '</button>';
}
}
}
} else {
str = '';
for(var n = 0; n < page; n++) { //此页左边
str += '<button data-page="' + n + '">' + (n + 1) + '</button>';
}
str += '<button data-page="' + page + '" class="' + pager.currentBtn + '" disabled="disabled">' + (page + 1) + '</button>'; //此页
for(var x = 1; x < pager.maxCount - page; x++) { //此页右边
str += '<button data-page="' + (page + x) + '">' + (page + x + 1) + '</button>';
}
} $('.' + pager.numBtnBox).html(str); //每个btn绑定请求数据页面跳转方法
$('.' + pager.numBtnBox + ' button').each(function(i, v) {
$(this).click(function() {
goPage(v.getAttribute('data-page'));
});
}); //按钮禁用
$('.' + pager.btnBox + ' button').not('.' + pager.currentBtn).attr('disabled', false);
if(!page) { //首页时
$('.' + pager.btnBox + ' .first-btn').attr('disabled', true);
$('.' + pager.btnBox + ' .prev-btn').attr('disabled', 'disabled');
}
if(page == pager.maxCount - 1) { //尾页时
$('.' + pager.btnBox + ' .last-btn').attr('disabled', true);
$('.' + pager.btnBox + ' .next-btn').attr('disabled', true);
}
} //首屏加载
createOtherBtn(); //首屏加载一次非数字按钮即可
goPage(); //请求数据页面跳转满足条件按钮点击都执行,首屏默认跳转到currentPage
}
//调用
paginationNick({
paginationBox: 'pagination-nick', //分页容器--必填
mainBox: 'main-box-nick', //内容盒子--必填
numBtnBox: 'num-box-nick', //数字按钮盒子-- 必填
btnBox: 'btn-box-nick', //按钮盒子 --必填
ipt: 'page-ipt-nick', //input class-- 必填
goBtn: 'go-btn-nick', //go btn class --必填
currentBtn: 'active-nick' //当前按钮class name --必填
});
</script>
</body> </html>

python 进行后端分页详细代码的更多相关文章

  1. datatables后端分页

    0x01 缘由 平时较少涉及前端,这次本以为模板中有表单,分页跳转搜索功能都比较齐全,可以高枕无忧,但是细看模板中的分页跳转是不需要与后台交互的,数据一次性写在前端,再有前端插件完成分页. 这种方式肯 ...

  2. 类Flask实现前后端交互之代码聊天室

    前言 框架 项目目录及各自功能 流程图 后端 server backend exector 前端 ajax 页面更新 演示 简易应答模式 代理模式处理外部请求 后台日志 总结 前言 这两天老是做梦,全 ...

  3. 利用EasyUI 数据网格(DataGrid)的loader属性实现后端分页

    该属性在easyui官方文档中并没有详细阐述,通过简单的资料查询和摸索,实现了easyUI数据网格的后端分页功能. 在官网文档中这样阐述loader属性: 定义如何从远程服务器加载数据.返回false ...

  4. php分页类代码带分页样式效果(转)

    php分页类代码,有漂亮的分页样式风格 时间:2016-03-16 09:16:03来源:网络 导读:不错的php分页类代码,将类文件与分页样式嵌入,实现php查询结果的精美分页,对研究php分页原理 ...

  5. python的urllib2库详细使用说明

    一直以来技术群里会有新入行的同学提问关于urllib和urllib2以及cookielib相关的问题.所以我打算在这里总结一下,避免大家反复回答同样的问题浪费资源. 这篇属于教程类的文字,如果你已经非 ...

  6. bootstrap table 前后端分页(超级简单)

    前端分页:数据库查询所有的数据,在前端进行分页 后端分页:每次只查询当前页面加载所需要的那几条数据 下载bootstrap 下载bootstrap table jquery谁都有,不说了 项目结构:T ...

  7. datatables跳转自定义页面(后端分页)

    在后端分页的情况下,怎么做到跳转自定义页面? 0x01 难点: 一. 怎么添加自定义代码? 前提:datatables在整个html加载完毕后,进行datatables数据的渲染,并且把右下角的 “上 ...

  8. Python小数据池,代码块

    今日内容一些小的干货 一. id is == 二. 代码块 三. 小数据池 四. 总结 python小数据池,代码块的最详细.深入剖析   一. id is == 二. 代码块 三. 小数据池 四. ...

  9. EasyUI表格DataGrid前端分页和后端分页的总结

    Demo简介 Demo使用Java.Servlet为后台代码(数据库已添加数据),前端使用EasyUI框架,后台直接返回JSON数据给页面 1.配置Web.xml文件 <?xml version ...

随机推荐

  1. 【Unity】11.2 刚体(Rigidbody)

    分类:Unity.C#.VS2015 创建日期:2016-05-02 一.简介 Rigidbody(刚体)组件可使游戏对象在物理系统的控制下来运动,刚体可接受外力与扭矩力,使游戏对象像在真实世界中那样 ...

  2. 我的Eclipse设置

    1.默认编码改成:UTF-8(在老项目里设置此项可能导致java源码文件注释显示乱码!可以手工输入GBK三个字母,然后点apply) 2.文件默认打开方式 3.背景颜色(#C0C0C0,RGB(192 ...

  3. Android性能优化系列之apk瘦身

    Android性能优化系列之布局优化 Android性能优化系列之内存优化 为什么APK要瘦身.APK越大,在下载安装过程中.他们耗费的流量会越多,安装等待时间也会越长:对于产品本身,意味着下载转化率 ...

  4. 【006】【JVM——垃圾收集器总结】

     Java虚拟机学习总结文件夹 JVM--垃圾收集器总结 垃圾收集器概览 收集算法是内存回收的方法论.垃圾收集据是内存回收的详细实现.Java虚拟机规范中对垃圾收集器应该怎样实现没有规定.不同的厂 ...

  5. Golang之字符串格式化

    字符串格式化 // Go 之 字符串格式化 // // Copyright (c) 2015 - Batu // package main import ( "fmt" ) typ ...

  6. CAS无锁实现原理以及ABA问题

    CAS(比较与交换,Compare and swap) 是一种有名的无锁算法.无锁编程,即不使用锁的情况下实现多线程之间的变量同步,也就是在没有线程被阻塞的情况下实现变量的同步,所以也叫非阻塞同步(N ...

  7. iOS-图片浏览器(字典和plist文件的使用)

    // //  ViewController.m //  19-图片浏览器 // //  Created by hongqiangli on 2017/7/31. //  Copyright © 201 ...

  8. C++用new来创建对象和非new来创建对象的区别

    转:http://www.cnblogs.com/GODYCA/archive/2013/01/10/2854777.html 我们都知道C++中有三种创建对象的方法,如下: #include < ...

  9. LeetCode: Binary Tree Level Order Traversal 解题报告

    Binary Tree Level Order Traversal Given a binary tree, return the level order traversal of its nodes ...

  10. AIX参数调整

    AIX下修改用户最大进程数限制: 用命令查看用户进程数 ps -ef | grep 用户名|wc -l 发现用户进程数达到最大 128 查看用户最大进程数设置 命令 #lsattr -E -l sys ...