91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何通過前后端結合實現amazeUI分頁效果

發布時間:2022-03-01 10:11:42 來源:億速云 閱讀:156 作者:iii 欄目:開發技術

這篇文章主要介紹了如何通過前后端結合實現amazeUI分頁效果的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇如何通過前后端結合實現amazeUI分頁效果文章都會有所收獲,下面我們一起來看看吧。

前端實現

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) {
                        //當頁面大于7個的時候,那么在第五個和倒數第五個時,執行
                        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分頁效果”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

亳州市| 双鸭山市| 呼玛县| 沙坪坝区| 历史| 达孜县| 双峰县| 牡丹江市| 班戈县| 宜黄县| 华池县| 金门县| 天峨县| 沁水县| 泰宁县| 会东县| 宾川县| 城步| 和龙市| 乳山市| 石渠县| 久治县| 尼玛县| 华宁县| 江口县| 富源县| 修水县| 休宁县| 土默特右旗| 西丰县| 通道| 安乡县| 利辛县| 波密县| 涟源市| 土默特左旗| 江源县| 宜宾县| 廊坊市| 延津县| 曲靖市|