前后端结合实现amazeUI分页效果

这篇文章主要介绍了前后端结合实现amazeUI分页,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

前后端结合实现amazeUI分页,代码如下所示;

借鉴

本文在博客https://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 ? “

  • »
  • ” : “

  • »
  • “;
                    var preBar = offset == 1 ? “

  • «
  • ” : “

  • «
  • “;
                    //组装向上一个节点和下一页节点
                    if (opts.totalBars > 7) {
                        if (offset < 5) {
                            output += preBar;
                            for (var i = 1; i <= 5; i++) {
                                if (i == offset) {
                                    output += “

  • ” + offset + “
  • “;
                                } else {
                                    output += “

  • ” + i + “
  • “;
                                }
                            }
                            output += “

  • “;
                            output += “

  • ” + (opts.totalBars) + “
  • ” + nextBar;
                        } else if (offset >= 5 && offset <= opts.totalBars – 4) {
                            //当页面大于7个的时候,那么在第五个和倒数第五个时,执行
                            output += preBar;
                            output += “

  • ” + 1 + “
  • “;
                            //第一个
                            output += “

  • “; //省略号
     
                            output += “

  • ” + (offset – 1) + “
  • “;
     
                            output += “

  • ” + offset + “
  • “;
     
                            output += “

  • ” + (offset + 1) + “
  • “;
     
                            output += “

  • “; //省略号;
     
                            output += “

  • ” + (opts.totalBars) + “
  • “; //尾页
     
                            output += nextBar;
     
                        } else if (offset > opts.totalBars – 4 && offset <= opts.totalBars) {
                            //当页面位于倒数第四个时候
                            output += preBar;
                            output += “

  • ” + 1 + “
  • ” + “

  • “;
     
                            for (var j = 4; j >= 0; j–) {
                                if (opts.totalBars – j == offset) {
                                    output += “

  • ” + (opts.totalBars – j) + “
  • “;
                                } else {
                                    output += “

  • ” + (opts.totalBars – j) + “
  • “;
                                }
                            }
                            output += nextBar;
                        } else {
                            console.log(“分页数据出错!”);
                            return;
                        }
                    } else {
                        output += preBar;
                        for (var i = 1; i <= opts.totalBars; i++) {
                            if (i == offset) {
                                output += “

  • ” + offset+ “
  • “;
                            } else {
                                output += “

  • ” + i+ “
  • “;
                            }
                        }
                        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 = “

  • «
  • “;
                //上一页,(禁用的效果)
                //如果只有一页,那么禁用下一页
                var nextBar = opts.totalBars > 1 ? “

  • »
  • ” : “

  • »
  • “;
                //最后一页
                var output = “

  • 1
  • “;
     
                if (opts.totalBars <= 7) {
                    for (var i = 1; i < opts.totalBars; i++) {
                        output += “

  • ” + (i + 1) + “
  • “;
                    }
                } else {
                    for (var j = 1; j < 5; j++) {
                        output += “

  • ” + (j + 1) + “
  • “;
                    }
                    output += “

  • “;
                    output += “

  • ” + (opts.totalBars) + “
  • “;
                }
                $(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 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 list = iNumberCheckService.selectNumberCheckByCont(offset, limit);

            return list;
        }

    总结

    到此这篇关于前后端结合实现amazeUI分页的文章就介绍到这了,更多相关amazeUI分页内容请搜索脚本之家以前的文章或继续浏览下面的相关文章,希望大家以后多多支持脚本之家!

    来源:脚本之家

    链接:https://www.jb51.net/html5/741754.html

    版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

    发布者:SEO优化专员,转转请注明出处:https://www.chuangxiangniao.com/p/893342.html

    (0)
    上一篇 2025年1月3日 23:50:57
    下一篇 2025年1月3日 23:51:23

    AD推荐 黄金广告位招租... 更多推荐

    相关推荐

    • amazeui页面分析之登录页面的示例代码

      这篇文章主要介绍了amazeui页面分析之登录页面的示例代码,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下 一、总结 1、tpl命名空间:tpl命名空间的样式都是从app.css里面来…

      2025年1月4日
      100
    • AmazeUI 等分网格的实现示例

      这篇文章主要介绍了AmazeUI 等分网格的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 本文主要介绍了 AmazeUI 等分网格的实现示例,分享给大家,具体…

      2025年1月4日
      100
    • AmazeUI点击元素显示全屏的实现

      这篇文章主要介绍了AmazeUI 点击元素显示全屏的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 无论是点击图片还是按钮来显示全屏,具体代码如下: 点击按钮:  …

      编程技术 2025年1月4日
      100
    • AmazeUI按钮交互的实现示例

      本文主要介绍了AmazeUI 按钮交互的实现示例,分享给大家,具体如下: 按钮交互 <!– Submit – Button $(‘.btn-loading-example’).click…

      2025年1月4日
      100
    • amazeui页面校验功能的实现代码

      这篇文章主要介绍了amazeui页面校验功能的实现代码,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下 如下图所示: 邮政“邮政编码”字段,数据库中是varchar2(10)。 但是amazeui的…

      2025年1月4日
      100
    • amazeui树节点自动展开折叠面板并选中第一个树节点的实现

      这篇文章主要介绍了amazeui树节点自动展开折叠面板并选中第一个树节点的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 适用amazeui.tree版本:未知(截…

      编程技术 2025年1月4日
      100
    • AmazeUI图片轮播效果的示例代码

      这篇文章主要介绍了AmazeUI图片轮播效果的示例代码,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下 AmazeUI个人感觉确实蛮不错的,虽然现在还不算特别完善,但毕竟是国内首款,用起…

      2025年1月3日 编程技术
      200
    • AmazeUI 加载进度条的实现示例

      这篇文章主要介绍了AmazeUI 加载进度条的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 本文主要介绍了AmazeUI 加载进度条的实现示例,分享给大家,具…

      2025年1月3日
      200
    • AmazeUI的下载配置与Helloworld的实现

      这篇文章主要介绍了AmazeUI的下载配置与Helloworld的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 虽然这东西号称跨平台支持浏览器,但建议还是不要使用…

      2025年1月3日 编程技术
      200
    • amazeui模态框弹出后立马消失并刷新页面

      这篇文章主要介绍了amazeui模态框弹出后立马消失并刷新页面,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下 最近使用了amazeui做项目,用到了模态框,按照官网给的示例,点击按钮,…

      2025年1月3日
      200

    发表回复

    登录后才能评论

    联系我们

    156-6553-5169

    在线咨询: QQ交谈

    邮件:253000106@qq.com

    工作时间:周一至周五,9:30-18:30,节假日休息

    联系微信