zoukankan      html  css  js  c++  java
  • 星空雅梦

    1、引言

      在MVC开发中我们经常会对数据进行分页的展示。通过分页我们可以从服务端获取指定的数据来进行展示。这样既节约了数据库查询的时间也节约了网络传输的数据量。在MVC开发中使用的比较多的应该是MVCPager控件。这个控件提供无刷新分页等功能。虽然我们有这么好的控件可以使用,但是我们还是需要通过简单的例子来看一下原始的分页技术的雏形,学习下原始分页的技术实现。

    2、简单的分页实现

      此处使用T_Products表查询商品数据,然后进行展示。商品类定义如下:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    public sealed class Product
        {
            public string ProductId { getset; }
            public string ProductName { getset; }
            public string ProductImage { getset; }
            public int Price { getset; }
            public string CategoryId { getset; }
            public string Description { getset; }
        }

       我们通过仓储模式来定义数据的存储操作。其接口定义和实现类定义

    1
    2
    3
    4
    5
    6
    7
    8
    public interface IProductRepository
        {
            /// <summary>
            /// 获取数据库中全部的商品信息
            /// </summary>
            /// <returns></returns>
            IQueryable<T_Product> GetAll(int pageIndex, int pageSize, out int total);
        }
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    public class ProductRepository : IProductRepository
        {
            private DB_ShoppingEntities shoppingEntities = null;
     
            public ProductRepository()
            {
                this.shoppingEntities = new DB_ShoppingEntities();
            }
     
     
            public IQueryable<T_Product> GetAll(int pageIndex, int pageSize, out int total)
            {
                total = this.shoppingEntities.T_Product.Count();
                return this.shoppingEntities.T_Product.AsQueryable().OrderBy(p => p.Price).Skip((pageIndex - 1) * pageSize).Take(pageSize);
            }
        }

       通过上面的代码我们清晰的看到我们通过Linq表达式来获取指定页数的数据,当然也获取了当前操作所获取的数据的条数。下面我们需要定义自定义分页帮助类来协助我们构造分页所需的一些信息。定义如下:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    /// <summary>
        /// 分页帮助类
        /// </summary>
        public sealed class MyPager
        {
            private int total;
            //当前页的索引
            public int pageIndex { getset; }
            //总的页数
            public int pageCount { getset; }
     
            public MyPager(int total, int pageSize, int pageIndex)
            {
                this.total = total;
                this.pageIndex = pageIndex;
                //计算总页数
                int result = this.total % pageSize;
                this.pageCount = result == 0 ? this.total / pageSize : this.total / pageSize + 1;
            }
        }

       我们可以想一想分页的基本流程。我们客户端发送请求到服务端获取指定的数据。这时候我们将符合条件的数据查询出来以后,返回给客户端即可。但是分页的页码也是需要更新的。这里我们可以将分页的一些信息也一起返回给客户端。然客户端在展示新的数据的同时也更新分页的状态。在这里我们可以将分页的信息封装到一个类里面。这样我们可以重新定义一个类模型将需要返回给客户端的Products和分页信息封装到一起一起发给客户端,这样客户端就可以进行渲染。

    1
    2
    3
    4
    5
    6
    7
    8
    /// <summary>
        /// 带分页功能的产品类别
        /// </summary>
        public sealed class PagedProducts
        {
            public IList<Product> Products { getset; }
            public MyPager pager { getset; }
        }

       这时我们来看控制器中的方法。

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    public class ProductController : Controller
        {
            private IProductRepository productRepository = null;
     
            //每一页展示的数量
            private const int pageSize = 4;
     
            public ProductController(IProductRepository productRepository)
            {
                this.productRepository = productRepository;
            }
     
     
            public ViewResult Index(int pageIndex = 1)
            {
                PagedProducts pagedProducts = null;
                IList<Product> list = null;
                int total = 0;
                var products = this.productRepository.GetAll(pageIndex, pageSize, out total);
                if (products != null && products.Count() > 0)
                {
                    pagedProducts = new PagedProducts();
                    list = new List<Product>();
                    foreach (var item in products)
                    {
                        list.Add(new Product
                        {
                            ProductId = item.ProductID,
                            ProductName = item.ProductName,
                            ProductImage = item.ProductImage == null "" : item.ProductImage,
                            Price = (int)item.Price,
                            CategoryId = item.CategoryID,
                            Description = item.Description
                        });
                    }
                    //定义分页对象
                    pagedProducts.Products = list;
                    pagedProducts.pager = new MyPager(total, pageSize, pageIndex);
                }
                return View(pagedProducts);
            }
        }

       我们定义的pagedProducts包含了Products和pager对象。这样我们在客户端就可以进行渲染。客户端的代码如下:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    @model Shopping.Models.PagedProducts
    @using Shopping.ExtendMethod;
    @{
        Layout = "~/Views/Shared/_Layout.cshtml";
    }
    <style type="text/css">
        table {
            60%;
            height:auto;
            margin:60px auto;
            border-collapse:collapse;
            border:0px;
        }
        table tr{
            text-align:center;
            height:30px;
            line-height:30px;
        }
        /*设置第一行的样式*/
        table tr:first-child {
            
            font-weight:bold;
        }
     
        table tr td {
            border:1px #565252 solid;
        }
        div {
            60%;
            height:30px;
            margin:20px auto;
        }
        div a {
            line-height:30px;
            text-align:center;
            padding:12px;
            font-size:14px;
            text-decoration:none;
        }
        div .selected {
            font-weight:bold;
            font-size:16px;
        }
    </style>
    <table>
        @if (Model != null && Model.Products.Count > 0)
        {
            <tr>
                <td>编号</td>
                <td>名称</td>
                <td>价格</td>
            </tr>
            foreach (var item in Model.Products)
            {
                <tr>
                    <td>@item.ProductId</td>
                    <td>@item.ProductName</td>
                    <td>@item.Price</td>
                </tr>
            }
        }
        else
        {
            <tr>
                <td>
                    当前不存在数据
                </td>
            </tr>
        }
    </table>
    <!--分页-->
    <div>
        @Html.MyPagerLink(Model.pager, index => Url.Action("Index", new { pageIndex = index }))
    </div>

       我们看到MyPagerLink方法,这个方法就是我们自定义进行分页的渲染方法。通过服务端传递的分页信息来渲染指定的分页信息进行展示。其代码如下:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    /// <summary>
        /// 定义扩展方法
        /// </summary>
        public static class ExtendMethod
        {
            /// <summary>
            /// 自定义分页扩展方法
            /// </summary>
            /// <param name="htmlHelper"></param>
            /// <param name="pager">分页对象</param>
            /// <param name="pageUrl">定义委托,该委托满足给定int类型的参数返回string类型的返回结果</param>
            /// <returns></returns>
            public static MvcHtmlString MyPagerLink(this HtmlHelper htmlHelper, MyPager pager, Func<intstring> pageUrl)
            {
                StringBuilder result = null;
                if (pager.pageCount > 0)
                {
                    result = new StringBuilder();
                    for (int i = 1; i <= pager.pageCount; i++)
                    {
                        TagBuilder tag = new TagBuilder("a");
                        //指定页数的链接
                        tag.MergeAttribute("href", pageUrl(i));
                        tag.InnerHtml = i.ToString();
                        if (i == pager.pageIndex)
                        {
                            tag.AddCssClass("selected");
                        }
                        result.Append(tag.ToString());
                    }
                }
                return MvcHtmlString.Create(result == null "" : result.ToString());
            }
        }

       我们通过看代码可以发现改代码通过获取分页的总页数来动态的创建<a>标签。我们来看一下最后的效果:

     
    分类: ASP.NET MVC
  • 相关阅读:
    线上幽灵:世界头号黑客米特尼克自传(体验头号黑客传奇人生,洞悉头号黑客思维模式!启明,绿盟,安天,安全宝,百度,腾讯,阿里……众安全专家一致推荐!)
    python+selenium环境搭建
    显示器尺寸和分辨率大小
    jQuery的get()post()getJson()方法
    python发送邮件
    python学习笔记之——正则表达式
    linux上查找文件存放地点和文件中查找字符串方法
    各种协议类型
    HTTP状态码、请求方法、响应头信息
    CSS选择器
  • 原文地址:https://www.cnblogs.com/LiZhongZhongY/p/10782236.html
Copyright © 2011-2022 走看看