前后左右端融合完成amazeUI分页查询,编码以下所显示;
效仿
文中在bloghttps://blog.csdn.net/brave_coder/article/details/52367124的基本上完成的,十分谢谢巨头的共享。
前端开发完成
1、引进paginator.js
(function ($) { $.fn.paginator = function (options) { //this偏向当今的挑选器 var config = { url: "", pageParent: "", totalBars: -1, limit: -1, offset: 1, callback: null } //合拼主要参数 var opts = $.extend(config, options); opts.totalBars = Math.ceil(opts.totalBars / opts.limit); //测算按键的总数量 //获得offset主要参数 var queryString = function (url) { var offset = (url.split("?")[1]).split("=")[1]; return parseInt(offset); } //ajax关键方式,用以分页查询的数据信息实际操作 var ajaxCore = function (offset, fn) { $.ajax({ "url": opts.url, "data": { "offset": offset, "limit": opts.limit }, "dataType": "JSON", "method": "POST", "success": fn }); } //再次安装分页查询按键 var pageCore = function (offset) { if (opts.offset == offset) { return; } //假如是当今网页页面,那麼就啥事也不用做了! else { ajaxCore(offset, opts.callback); $(opts.pageParent).empty(); //不然,清除全部的连接点,再次向DOM插进新的分页查询按键 var output = ""; var nextBar = offset == opts.totalBars ? "<li class=\"am-disabled\"><a yxhref=\"javascript:;\">»</a></li>" : "<li><a yxhref=\"" + opts.url + (offset + 1) + "\">»</a></li>"; var preBar = offset == 1 ? "<li class=\"am-disabled\"><a yxhref=\"javascript:;\">«</a></li>" : "<li><a yxhref=\"" + opts.url + (offset - 1) + "\">«</a></li>"; //拼装往上一个连接点和下一页连接点 if (opts.totalBars > 7) { if (offset < 5) { output += preBar; for (var i = 1; i <= 5; i++) { if (i == offset) { output += "<li class=\"am-active\"><a yxhref=\"" + opts.url + offset + "\">" + offset + "</a></li>"; } else { output += "<li><a yxhref=\"" + opts.url + i + "\">" + i + "</a></li>"; } } output += "<li><span>...</span></li>"; output += "<li><a yxhref=\"" + opts.url + (opts.totalBars) + "\">" + (opts.totalBars) + "</a></li>" + nextBar; } else if (offset >= 5 && offset <= opts.totalBars - 4) { //当网页页面超过七个的情况下,那麼在第五个和倒数第五个时,实行 output += preBar; output += "<li><a yxhref=\"" + opts.url + 1 + "\">" + 1 + "</a></li>"; //第一个 output += "<li><span>...</span></li>"; //省去号 output += "<li><a yxhref=\"" + opts.url + (offset - 1) + "\">" + (offset - 1) + "</a></li>"; output += "<li class=\"am-active\"><a yxhref=\"" + opts.url + offset + "\">" + offset + "</a></li>"; output += "<li><a yxhref=\"" + opts.url + (offset + 1) + "\">" + (offset + 1) + "</a></li>"; output += "<li><span>...</span></li>"; //省去号; output += "<li><a yxhref=\"" + opts.url + (opts.totalBars) + "\">" + (opts.totalBars) + "</a></li>"; //尾页 output += nextBar; } else if (offset > opts.totalBars - 4 && offset <= opts.totalBars) { //当网页页面坐落于倒数第四个情况下 output += preBar; output += "<li><a yxhref=\"" + opts.url + 1 + "\">" + 1 + "</a></li>" + "<li><span>...</span></li>"; for (var j = 4; j >= 0; j--) { if (opts.totalBars - j == offset) { output += "<li class=\"am-active\"><a yxhref=\"" + opts.url + (opts.totalBars - j) + "\">" + (opts.totalBars - j) + "</a></li>"; } else { output += "<li><a yxhref=\"" + opts.url + (opts.totalBars - j) + "\">" + (opts.totalBars - j) + "</a></li>"; } } output += nextBar; } else { console.log("分页查询数据信息错误!"); return; } } else { output += preBar; for (var i = 1; i <= opts.totalBars; i++) { if (i == offset) { output += "<li class=\"am-active\"><a yxhref=\"" + opts.url + offset + "\">" + offset+ "</a></li>"; } else { output += "<li><a yxhref=\"" + opts.url + i + "\">" + i+ "</a></li>"; } } output += nextBar; } $(opts.pageParent).append(output); opts.offset = offset; //将偏位量取值给config里边的offset } } //清除涵数,避免多关联恶性事件和再次测算分页查询 var clear = function () { $(opts.pageParent).empty().undelegate(); } //原始化妆配分页查询按键 var init = function (fn) { if (typeof (fn) != "function") { console.log("将不可以恰当的实行回调函数涵数"); } else { opts.callback = fn; } clear(); ajaxCore(1, opts.callback);//实行原始化ajax方式 var preBar = "<li class=\"am-disabled\"><a yxhref=\"javascript:;\">«</a></li>"; //上一页,(禁止使用的实际效果) //假如仅有一页,那麼禁止使用下一页 var nextBar = opts.totalBars > 1 ? "<li><a yxhref=\"" + opts.url + 2 + "\">»</a></li>" : "<li class=\"am-disabled\"><a yxhref=\"javascript:;\">»</a></li>"; //最终一页 var output = "<li class=\"am-active\"><a yxhref=\"" + opts.url + 1 + "\">1</a></li>"; if (opts.totalBars <= 7) { for (var i = 1; i < opts.totalBars; i++) { output += "<li><a yxhref=\"" + opts.url + (i + 1) + "\">" + (i + 1) + "</a></li>"; } } else { for (var j = 1; j < 5; j++) { output += "<li><a yxhref=\"" + opts.url + (j + 1) + "\">" + (j + 1) + "</a></li>"; } output += "<li><span>...</span></li>"; output += "<li><a yxhref=\"" + opts.url + (opts.totalBars) + "\">" + (opts.totalBars) + "</a></li>"; } $(opts.pageParent).delegate("a","click", function () { var offset = queryString($(this).attr("yxhref")); console.log("ok"); pageCore(offset); }); $(opts.pageParent).append(preBar + output + nextBar); }; init(opts.callback);//原始化分页查询模块 } }(window.jQuery))
2、获得总页数,再获得分页查询
$.ajax({ type: "GET", url: selectSendNumberNumsByContURL,//获得数量 data: {}, dataType: "json", success: function(data){ if (data[0].code == 200) { $("#paginator").paginator({ url: selectSendNumberByContURL + "?offsets=", pageParent: "#paginator", totalBars: data[0].allNums, limit: 10, offset: 1, callback: function (data1) { //清除DOM连接点 //动态性加dom连接点 } }); }else{ } }, error: function (err) { } });
后端开发完成(分页查询)
这儿是controller,取得offset(第两页)主要参数、limit(每张是多少总数),再写SQL完成分页查询就行了。
@RequestMapping(value = "/selectNumberCheckByCont", method = RequestMethod.POST) @ResponseBody public List<ReturnUtils> selectNumberCheckByCont(HttpServletRequest request, HttpServletResponse response) throws Exception { //统一设定回到数据信息文件格式 response.setContentType("application/json"); response.setHeader("Pragma", "no-cache"); response.setCharacterEncoding("UTF-8"); String offset = request.getParameter("offset"); String limit = request.getParameter("limit"); List<ReturnUtils> list = iNumberCheckService.selectNumberCheckByCont(offset, limit); return list; }
小结
到此这篇有关前后左右端融合完成amazeUI分页查询的文章内容就详细介绍到这了,大量有关amazeUI分页查询內容请检索脚本制作之家之前的文章内容或再次访问下边的有关文章内容,期待大伙儿之后多多的适用脚本制作之家!