mvc中使用Pagination,对其进行再封装

对其进行再次封装:

(function($) {
            $["fn"]["easyPaging"] = function(o) {
                if (!o.pageSelect ||!$["fn"]["pagination"]) {
                    return this;
                }
                var num = o.num || 50;
                var opts = {
                    "items_per_page": 10,
                    "num_display_entries": 5,
                    "num_edge_entries": 1,
                    "prev_text": "< 上一页",
                    "next_text": "> 下一页",
                    "callback": function(page_index, jq) {}
                };
                $["extend"](opts, o || {});

                opts.callback = function(page_index, jq){
                    var select = o.pageSelect;
                    var max_elem = Math.min((page_index+1) * opts.items_per_page, num);
                    select(page_index + 1, page_index * opts.items_per_page, max_elem);
                    return false;
                }
                var sumPage = Math.ceil(num/opts.items_per_page);
                opts.bindclick = function(pageSelected){
                    $("#hx_getPageData").on("click",function(evt){
                        var hxpageIndex = $.trim($("#hx_pageIndex").val());
                        if(hxpageIndex.length == 0 || hxpageIndex <= 0)
                        {
                            hxpageIndex = 1;
                            $("#hx_pageIndex").val(1);
                        }
                        if(hxpageIndex > sumPage)
                        {
                            hxpageIndex = sumPage;
                            $("#hx_pageIndex").val(hxpageIndex);
                        }
                        pageSelected(hxpageIndex-1,evt);
                    });
                }
                var othertext = ‘<span>共‘ + sumPage + ‘页,去第</span><input type="text" id="hx_pageIndex" />页<input type="button" id="hx_getPageData" value="确定" />‘;

                var thisObj = $(this);
                $(othertext).insertAfter(thisObj);
                thisObj.pagination(o.num, opts);
            };

        }(jQuery)); 

使用方式:

        function pageSelect(pindex, start,end){
            $.get( ‘@Url.Action("PersonDetail", "PageTest")‘+‘?pindex=‘ + pindex + "&start=" + start + "&end=" + end,
            function(data) {
                $(‘#Searchresult‘).html(data);
            });
            return false;
        }
        $(document).ready(function(){

            $("#Pagination").easyPaging({num:195,pageSelect:pageSelect});
        });

整个页面:

@section css
{
    <link href="@Url.Content("~/Scripts/Pagination/Pagination.css")" rel="stylesheet" type="text/css" />

}

<div id="Pagination" class="pagination"></div>
<br style="clear:both;"/>
<h3>List of former members of the United States House of Representatives (A)</h3>
<div id="Searchresult"></div>
@section script{
   <script src="@Url.Content("~/Scripts/Pagination/myPagination.js?v=11")" charset="UTF-8" type="text/javascript"></script>
   <script type="text/javascript">
           (function($) {
            $["fn"]["easyPaging"] = function(o) {
                if (!o.pageSelect ||!$["fn"]["pagination"]) {
                    return this;
                }
                var num = o.num || 50;
                var opts = {
                    "items_per_page": 10,
                    "num_display_entries": 5,
                    "num_edge_entries": 1,
                    "prev_text": "< 上一页",
                    "next_text": "> 下一页",
                    "callback": function(page_index, jq) {}
                };
                $["extend"](opts, o || {});

                opts.callback = function(page_index, jq){
                    var select = o.pageSelect;
                    var max_elem = Math.min((page_index+1) * opts.items_per_page, num);
                    select(page_index + 1, page_index * opts.items_per_page, max_elem);
                    return false;
                }
                var sumPage = Math.ceil(num/opts.items_per_page);
                opts.bindclick = function(pageSelected){
                    $("#hx_getPageData").on("click",function(evt){
                        var hxpageIndex = $.trim($("#hx_pageIndex").val());
                        if(hxpageIndex.length == 0 || hxpageIndex <= 0)
                        {
                            hxpageIndex = 1;
                            $("#hx_pageIndex").val(1);
                        }
                        if(hxpageIndex > sumPage)
                        {
                            hxpageIndex = sumPage;
                            $("#hx_pageIndex").val(hxpageIndex);
                        }
                        pageSelected(hxpageIndex-1,evt);
                    });
                }
                var othertext = ‘<span>共‘ + sumPage + ‘页,去第</span><input type="text" id="hx_pageIndex" />页<input type="button" id="hx_getPageData" value="确定" />‘;

                var thisObj = $(this);
                $(othertext).insertAfter(thisObj);
                thisObj.pagination(o.num, opts);
            };

        }(jQuery));
        function pageSelect(pindex, start,end){
            $.get( ‘@Url.Action("PersonDetail", "PageTest")‘+‘?pindex=‘ + pindex + "&start=" + start + "&end=" + end,
            function(data) {
                $(‘#Searchresult‘).html(data);
            });
            return false;
        }
        $(document).ready(function(){

            $("#Pagination").easyPaging({num:195,pageSelect:pageSelect});
        });

    </script>
}

使用ajax请求部分视图:

@model List<MvcApp.Models.Person>

<table>
<thead>
    <tr>
        <td>Id</td>
        <td>Name</td>
        <td>NicName</td>
        <td>Tel</td>
    </tr>
</thead>
<tbody>
    @foreach (var item in Model)
    {
        <tr>
            <td>@item.Id</td>
            <td>@item.Name</td>
            <td>@item.NicName</td>
            <td>@item.Tel</td>
        </tr>
    }
</tbody>
</table>
<p>pageIndex:@ViewBag.pageIndex</p>

控制器:

        public ActionResult PersonDetail(int pindex)
        {
            ViewBag.pageIndex = pindex;
            return PartialView(GetDatas());
        }
        public List<Person> GetDatas()
        {
            return new List<Person>
            {
                new Person{Id=1,Name="ly1",NicName="llllyyyy",Tel="135"},
                new Person{Id=2,Name="ly2",NicName="llllyyyy",Tel="135"},
                new Person{Id=3,Name="ly3",NicName="llllyyyy",Tel="135"},
                new Person{Id=4,Name="ly4",NicName="llllyyyy",Tel="135"},
                new Person{Id=5,Name="ly5",NicName="llllyyyy",Tel="135"},
                new Person{Id=6,Name="ly6",NicName="llllyyyy",Tel="135"},
                new Person{Id=7,Name="ly7",NicName="llllyyyy",Tel="135"},
                new Person{Id=8,Name="ly8",NicName="llllyyyy",Tel="135"},
                new Person{Id=9,Name="ly9",NicName="llllyyyy",Tel="135"},
                new Person{Id=10,Name="ly10",NicName="llllyyyy",Tel="135"}
            };
        
/**
 * This jQuery plugin displays pagination links inside the selected elements.
 *
 * @author Gabriel Birke (birke *at* d-scribe *dot* de)
 * @version 1.2
 * @param {int} maxentries Number of entries to paginate
 * @param {Object} opts Several options (see README for documentation)
 * @return {Object} jQuery Object
 */
jQuery.fn.pagination = function(maxentries, opts){
    opts = jQuery.extend({
        items_per_page:10,
        num_display_entries:10,
        current_page:0,
        num_edge_entries:0,
        link_to:"#",
        prev_text:"Prev",
        next_text:"Next",
        ellipse_text:"...",
        prev_show_always:true,
        next_show_always:true,
        //other_text: "",
        callback:function(){return false;},
        bindclick:function(){}
    },opts||{});

    return this.each(function() {
        /**
         * Calculate the maximum number of pages
         */
        function numPages() {
            return Math.ceil(maxentries/opts.items_per_page);
        }

        /**
         * Calculate start and end point of pagination links depending on
         * current_page and num_display_entries.
         * @return {Array}
         */
        function getInterval()  {
            var ne_half = Math.ceil(opts.num_display_entries/2);
            var np = numPages();
            var upper_limit = np-opts.num_display_entries;
            var start = current_page>ne_half?Math.max(Math.min(current_page-ne_half, upper_limit), 0):0;
            var end = current_page>ne_half?Math.min(current_page+ne_half, np):Math.min(opts.num_display_entries, np);
            return [start,end];
        }

        /**
         * This is the event handling function for the pagination links.
         * @param {int} page_id The new page number
         */
        function pageSelected(page_id, evt){
            current_page = page_id;
            drawLinks();
            var continuePropagation = opts.callback(page_id, panel);
            if (!continuePropagation) {
                if (evt.stopPropagation) {
                    evt.stopPropagation();
                }
                else {
                    evt.cancelBubble = true;
                }
            }
            return continuePropagation;
        }

        /**
         * This function inserts the pagination links into the container element
         */
        function drawLinks() {
            panel.empty();
            var interval = getInterval();
            var np = numPages();
            // This helper function returns a handler function that calls pageSelected with the right page_id
            var getClickHandler = function(page_id) {
                return function(evt){ return pageSelected(page_id,evt); }
            }
            // Helper function for generating a single link (or a span tag if it‘s the current page)
            var appendItem = function(page_id, appendopts){
                page_id = page_id<0?0:(page_id<np?page_id:np-1); // Normalize page id to sane value
                appendopts = jQuery.extend({text:page_id+1, classes:""}, appendopts||{});
                if(page_id == current_page){
                    var lnk = jQuery("<span class=‘current‘>"+(appendopts.text)+"</span>");
                }
                else
                {
                    var lnk = jQuery("<a>"+(appendopts.text)+"</a>")
                        .bind("click", getClickHandler(page_id))
                        .attr(‘href‘, opts.link_to.replace(/__id__/,page_id));

                }
                if(appendopts.classes){lnk.addClass(appendopts.classes);}
                panel.append(lnk);
            }
            // Generate "Previous"-Link
            if(opts.prev_text && (current_page > 0 || opts.prev_show_always)){
                appendItem(current_page-1,{text:opts.prev_text, classes:"prev"});
            }
            // Generate starting points
            if (interval[0] > 0 && opts.num_edge_entries > 0)
            {
                var end = Math.min(opts.num_edge_entries, interval[0]);
                for(var i=0; i<end; i++) {
                    appendItem(i);
                }
                if(opts.num_edge_entries < interval[0] && opts.ellipse_text)
                {
                    jQuery("<span>"+opts.ellipse_text+"</span>").appendTo(panel);
                }
            }
            // Generate interval links
            for(var i=interval[0]; i<interval[1]; i++) {
                appendItem(i);
            }
            // Generate ending points
            if (interval[1] < np && opts.num_edge_entries > 0)
            {
                if(np-opts.num_edge_entries > interval[1]&& opts.ellipse_text)
                {
                    jQuery("<span>"+opts.ellipse_text+"</span>").appendTo(panel);
                }
                var begin = Math.max(np-opts.num_edge_entries, interval[1]);
                for(var i=begin; i<np; i++) {
                    appendItem(i);
                }

            }
            // Generate "Next"-Link
            if(opts.next_text && (current_page < np-1 || opts.next_show_always)){
                appendItem(current_page+1,{text:opts.next_text, classes:"next"});
            }
//            panel.append(jQuery(opts.other_text));

        }

        // Extract current_page from options
        var current_page = opts.current_page;
        // Create a sane value for maxentries and items_per_page
        maxentries = (!maxentries || maxentries < 0)?1:maxentries;
        opts.items_per_page = (!opts.items_per_page || opts.items_per_page < 0)?1:opts.items_per_page;
        // Store DOM element for easy access from all inner functions
        var panel = jQuery(this);
        // Attach control functions to the DOM element
        this.selectPage = function(page_id){ pageSelected(page_id);}
        this.prevPage = function(){
            if (current_page > 0) {
                pageSelected(current_page - 1);
                return true;
            }
            else {
                return false;
            }
        }
        this.nextPage = function(){
            if(current_page < numPages()-1) {
                pageSelected(current_page+1);
                return true;
            }
            else {
                return false;
            }
        }
        // When all initialisation is done, draw the links
        drawLinks();
        // call callback function
        opts.callback(current_page, this);
        opts.bindclick(pageSelected);
    });
}

css:

.pagination {
            font-size: 80%;
        }

.pagination a {
    text-decoration: none;
    border: solid 1px #AAE;
    color: #15B;
}

.pagination a, .pagination span {
    display: block;
    float: left;
    padding: 0.3em 0.5em;
    margin-right: 5px;
    margin-bottom: 5px;
}

.pagination .current {
    background: #26B;
    color: #fff;
    border: solid 1px #AAE;
}

.pagination .current.prev, .pagination .current.next{
    color:#999;
    border-color:#999;
    background:#fff;
}
时间: 2024-12-24 22:15:42

mvc中使用Pagination,对其进行再封装的相关文章

MVC中Controller间的传值、Controller到View的传值方法

从做了考试以来,和别人也进行了交流,发现系统内部的传值算是一个比较费劲的问题.这篇博客讲解两种传值的情况--MVC中Controller间的传值,这里包括了第二种Controller到View的传值. 示例:我有两个Controller:C1和C2,我想把C1中的课程实体的课程ID传到C2中.方案是先把C1中的课程ID传到C2对应的View页面的地址栏中,然后C2从自己的View页面中获取. 来看代码: //下面是一个easyUI的表格,执行ScoringManagementCotroller下

ASP.NET MVC中为DropDownListFor设置选中项的方法

在MVC中,当涉及到强类型编辑页,如果有select元素,需要根据当前Model的某个属性值,让Select的某项选中.本篇只整理思路,不涉及完整代码. □ 思路 往前台视图传的类型是List<SelectListItem>,把SelectListItem选中项的Selected属性设置为true,再把该类型对象实例放到ViewBag,ViewData或Model中传递给前台视图. 通过遍历List<SelectListItem>类型对象实例 □ 控制器 ? 1 2 3 4 5 6

使用Json.Net解决MVC中各种json操作

最近收集了几篇文章,用于替换MVC中各种json操作,微软mvc当然用自家的序列化,速度慢不说,还容易出问题,自定义性也太差,比如得特意解决循环引用的问题,比如datetime的序列化格式,比如性能.NewtonSoft.json也就是Json.Net性能虽然不是最好的,但是是比较靠前的,其功能是最强大的,包含各种json操作模式.现在来看看mvc中的替换1, Controller.Json方法这个方法最容易出现循环引用,比如EF查出一个一对多集合想序列化,结果a引用了子表b,b中还引用了a,导

MVC中利用ActionFilterAttribute过滤关键字

在开发过程中,有时候会对用户输入进行过滤,以便保证平台的安全性.屏蔽的方法有很多种,但是今天我说的这种主要是利用MVC中的ActionFilterAttribute属性来实现.由于MVC天然支持AOP,所以我们这种过滤方式正好利用了MVC的这种特性. 下面请看步骤: 首先,当用户输入自己的名称的时候,带有类似<BR>的内容的时候,由于MVC默认是需要验证内容的,所以,会抛出一张黄页错误,提示用户:从客户端检测到潜在风险的Request值.这种页面是极为不友好的,同时也是我们作为开发最不想见到的

MVC中使用SignalR

MVC中使用SignalR打造酷炫实用的即时通讯功能附源码 前言,现在这世道写篇帖子没个前言真不好意思发出来.本贴的主要内容来自于本人在之前项目中所开发的一个小功能,用于OA中的即时通讯.由于当时走的太急,忘记把代码拿出来.想想这已经是大半年前的事情了,时间过了这么久,在当时最新的SignalR2.0.1到现在已经变成了2.2.昨天晚上特地熬了个夜,重新又把它写出来做了一个小小的Demo.当然我只是大自然的搬运工,这个SignalR即时通讯功能里面有一些前端的类库不是我自己写的.我只是改吧改吧~

MVC中ActionFilterAttribute用法并实现统一授权

MVC中ActionFilterAttribute经常用来处理权限或者统一操作时的问题. 先写一个简单的例子,如下: 比如现在有一个用户管理中心,而这个用户管理中心需要登录授权后才能进去操作或浏览信息,这个时候我们不可能每一个页面都写一遍权限的判断,这个时候就需要我们进行统一判断权限,那么怎么统一权限呢?如果你了解MVC那么下面的代码应该很容易看懂,否则还是先看一下MVC基础吧. 1.创建一个类(用来检查用户是否登录和用户权限)代码如下: // 过滤器    public class Membe

net mvc中angular

把angular项目整合到.net mvc中 之前的开发选择的是完全舍弃服务端,仅保留最简单web服务器提供angular经打包的静态资源,此外所有的业务与数据请求都访问一个分离的WebApi来实现.不过最近碰到一个需求,有必要使用多个客户端,而各客户端本身都是webpack打包出来的js而已,没必要每个客户端都自己建一个站点,这就有必要搭建一个服务端,根据参数动态渲染不同客户端的脚本来服务多个客户端了.主要需要解决两个问题,一是防止前后端路由冲突各自有效工作,二是如何实现一套比较合理的部署方案

MVC中的Views下面的视图放到Views文件夹外

实战:把ASP.NET MVC中的Views下面的视图放到Views文件夹外 园子里写的文章的都是把控制器从传统的项目中的Controllers拿出来单独放,但很少几乎没有把视图从Views拿出去这样的文章,今天来写一个. 今天学习MVC的时候,试着实现了一下,其实很简单!一步步解决问题就行了,下面记录如下,供需要的同学参考,写的不好,轻喷,谢啦 首先咱们自己建一个MyCustomView文件夹 下面建一个Home文件夹里面放Index.cshtml视图 删除原来Views/Home/Index

MVC中页面传值方式总结

MVC中的页面传值,通常指Controller和view之间的数据传递,经常用到的有几种方式,总结如下: 一.Controller----------->View 1.ViewData 获取或设置一个字典,其中包含在控制器和视图之间传递的数据.使用ViewData是采用键值对的形式,对所定义的数据进行传递.在View中会自动识别到拥有唯一键值的ViewData,并将数据显示出来. 例子: public ActionResult() { <span style="white-space