0

我完成了 Rick Anderson 的 ASP.NET MVC 3 (C#) 入门教程,它是一个产品目录,已经在工作,但是,由于我添加了很长的产品列表,现在我需要一个 pagedList 来获取一个数字每页的产品数量,环顾四周,我找到了一个示例,但没有工作,我在模型文件中添加了这个名为 IPagedList.cs 的类

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace Presupuestos.Models
{
    public interface IPagedList
    {
        int ItemCount
        {
            get;
            set;
        }

        int PageCount
        {
            get;
            set;
        }

        int PageIndex
        {
            get;
            set;
        }

        int PageSize
        {
            get;
            set;
        }

        bool IsPreviousPage
        {
            get;
        }

        bool IsNextPage
        {
            get;
        }
    }

    public interface IPagedList<T> : IList<T>, IPagedList
    {
    }

    public class PagedList<T> : List<T>, IPagedList<T>
    {
        private List<Productos> list;
        private int p;
        private int p_2;

        public PagedList(IQueryable<T> source, int index, int pageSize)
        {
            this.ItemCount = source.Count();
            this.PageSize = pageSize;
            this.PageIndex = index;
            this.AddRange(source.Skip(index * pageSize).Take(pageSize).ToList());
            this.PageCount = (int)Math.Ceiling((double)this.ItemCount / this.PageSize);
        }

        public PagedList(List<T> source, int index, int pageSize)
        {
            this.ItemCount = source.Count();
            this.PageSize = pageSize;
            this.PageIndex = index;
            this.AddRange(source.Skip(index * pageSize).Take(pageSize).ToList());
        }

        public PagedList(List<Productos> list, int p, int p_2)
        {
            // TODO: Complete member initialization
            this.list = list;
            this.p = p;
            this.p_2 = p_2;
        }

        public int ItemCount
        {
            get;
            set;
        }

        public int PageCount
        {
            get;
            set;
        }

        public int PageIndex
        {
            get;
            set;
        }

        public int PageSize
        {
            get;
            set;
        }

        public bool IsPreviousPage
        {
            get
            {
                return (PageIndex > 0);
            }
        }

        public bool IsNextPage
        {
            get
            {
                return (PageIndex + 1) * PageSize <= ItemCount;
            }
        }
    }

    public static class Pagination
    {
        public static PagedList<T> ToPagedList<T>(this IQueryable<T> source, int index, int pageSize)
        {
            return new PagedList<T>(source, index, pageSize);
        }

        public static PagedList<T> ToPagedList<T>(this IQueryable<T> source, int index)
        {
            return new PagedList<T>(source, index, 10);
        }
    }
}

另外,我添加了另一个名为 HTMLHelpers.cs 的类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Text;
using Presupuestos.Models;

namespace Presupuestos.Models
{
    public static class ListPaging
    {
        public static MvcHtmlString Paging(this HtmlHelper html, IPagedList pagedList, string url, string pagePlaceHolder)
        {
            StringBuilder sb = new StringBuilder();
            // only show paging if we have more items than the page size
            if (pagedList.ItemCount > pagedList.PageSize)
            {
                sb.Append("<ul class=\"paging\">");
                if (pagedList.IsPreviousPage && pagedList.PageIndex != 1)
                {
                    // previous link
                    sb.Append("<li class=\"prev\"><a href=\"");
                    sb.Append(url.Replace(pagePlaceHolder, (pagedList.PageIndex - 1).ToString()));
                    sb.Append("\" title=\"Go to Previous Page\">prev</a></li>");
                }
                for (int i = 0; i < pagedList.PageCount; i++)
                {
                    sb.Append("<li>");
                    if (i == pagedList.PageIndex)
                    {
                        sb.Append("<span>").Append((i + 1).ToString()).Append("</span>");
                    }
                    else
                    {
                        sb.Append("<a href=\"");
                        sb.Append(url.Replace(pagePlaceHolder, (i + 1).ToString()));
                        sb.Append("\" title=\"Go to Page ").Append((i + 1).ToString());
                        sb.Append("\">").Append((i + 1).ToString()).Append("</a>");
                    }
                    sb.Append("</li>");
                }
                if (pagedList.IsNextPage)
                {
                    // next link
                    sb.Append("<li class=\"next\"><a href=\"");
                    sb.Append(url.Replace(pagePlaceHolder, (pagedList.PageIndex + 1).ToString()));
                    sb.Append("\" title=\"Go to Next Page\">next</a></li>");
                }
                sb.Append("</ul>");
            }
            return MvcHtmlString.Create(sb.ToString());
        }
    }
}

最后这是视图文件,我刚刚添加了@using presupuestos.models 和最后一个 html.paging:

@model IEnumerable<Presupuestos.Models.Productos>        
@using Presupuestos.Models

@{
    ViewBag.Title = "Productos";
}

<h2>Catalogo de Productos</h2>

<p>
    @Html.ActionLink("Agregar Producto", "Create")
</p>
<table>
    <tr>
        <th>
            Marca
        </th>
        <th>
            Codigo
        </th>
        <th>
            Nombre
        </th>
        <th>
            Envase
        </th>
        <th>
            Presentación
        </th>
        <th>
            Linea
        </th>
        <th>
            Categoria
        </th>
        <th></th>
    </tr>

@foreach (var item in Model)
{
    <tr>
        <td>
            @Html.DisplayFor(modelItem => item.marca)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.codigo)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.nombre)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.envase)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.presentación)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.linea)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.categoria)
        </td>
        <td>
            @Html.ActionLink("Editar", "Edit", new { id = item.ID }) |
            @Html.ActionLink("Detalles", "Details", new { id = item.ID }) |
            @Html.ActionLink("Borrar", "Delete", new { id = item.ID })
        </td>
    </tr>
}

</table>
<div>
@Html.Paging(new PagedList<Productos>(ViewData.Model.ToList(),1,10), Url.Action("Index","Index", new { page = "PAGENUM" }), "PAGENUM")
</div>

希望你能帮助我,我已经坚持了一天,就在上周五我开始使用 mvc3,好在我的老板需要的是教程中的内容,但是,现在我想做这个额外的事情(pagedlist)我真的迷路了!

4

2 回答 2

0

看起来好像在这一行

@Html.Paging(new PagedList<Productos>(ViewData.Model.ToList(),1,10), Url.Action("Index","Index", new { page = "PAGENUM" }), "PAGENUM")

您正在将当前页面索引硬编码为 1。

我猜想在您的 Index 操作方法中,您可能需要一些代表您当前页面的东西,您可以将其传递给您的视图,并用它替换硬编码的 1 。

例如

public void Index(int page = 1)
{
    // ... set up your view model
    // ...
    // ...

    // page is added to the url by your paging helper.
    ViewBag.CurrentPage = page;

    return View(viewModel);
}

而在视野中...

@Html.Paging(new PagedList<Productos>(ViewData.Model.ToList(),@ViewBag.CurrentPage,10), Url.Action("Index","Index", new { page = "PAGENUM" }), "PAGENUM")
于 2012-07-17T21:41:48.080 回答
0

根据您在评论中所说的,分页列表不会出现在页面底部,我真的建议您进行一些调试并查看实际执行的代码路径。但无论如何,我们也许可以猜到以下......

第一步是在 中放置一个断点ListPaging.Paging并检查它是否实际被调用。如果是这样,并且没有任何内容附加到您的 StringBuilder,那么也许

if (pagedList.ItemCount > pagedList.PageSize)
{
     // ...

没有评估为真。我假设您的列表中的项目超过 10 个,所以它应该是真的。所以也许这没有评估为真的原因是因为没有设置任何值。

您添加的构造函数看起来很可疑:

public PagedList(List<Productos> list, int p, int p_2)
{
    // TODO: Complete member initialization
    this.list = list;
    this.p = p;
    this.p_2 = p_2;
}

PagedList 使用的所有属性实际上都没有在这里设置。这个构造函数有什么意义?p和是什么p_2?如果调用此构造函数,则 ItemCount 和 PageSize 将没有值。我建议摆脱它并让其他构造函数被调用。

于 2012-07-18T10:51:11.377 回答