嗨,我想知道是否有人对我在实现页面列表代码时遇到的问题有所了解(https://github.com/TroyGoode/PagedList)在我的asp.net mvc3网站上。以下是我尝试做的事情的细节:
我创建了一个Viemodel,其中包含以下详细信息:
public class ProductViewModelList
{
public List<Product> ProductBrowse { get; set; }
public int NumberOfProducts { get; set; }
public List<Category> CategoryModel { get; set; }
}
然后是一个控制器,其中包含我要传递给视图的信息:
public ActionResult List(int categoryid, int? page)
{
const int defaultPageSize = 20;
int currentPageIndex = page.HasValue ? page.Value - 1 : 0;
var categoryModel = db.Category.Include("Product").Single(c => c.CategoryId == categoryid);
var paginatedmodel = categoryModel.Product.ToPagedList(currentPageIndex, defaultPageSize);
var viewModel = new ProductViewModelList
{
ProductBrowse = paginatedmodel.ToList(),
NumberOfProducts = categoryModel.Product.Count()
};
return View(viewModel);
最后是以以下内容开头的视图:
@inherits System.Web.Mvc.WebViewPage<IPagedList<Social.ViewModels.ProductViewModelList>>
@using Social.Helpers;
@using System.Web.Mvc.Html
并以这种方式创建带有寻呼机的foreach:
@foreach (var item in Model)
{
<div class="result">
<div class="info_result"><h2><a>@Html.ActionLink(Html.TruncateText(item.Title, 25), "Details", new { id = item.ProductId })</a></h2><p><a>@Html.ActionLink(Html.TruncateText(item.Description, 180), "Details", new { id = item.ProductId })</a></p<a>@String.Format("{0:dddd, MMMM d, yyyy}", item.CreatedOn)</a></div>
<div class="paginacion">@Html.Pager(Model.PageSize, Model.PageNumber, Model.TotalItemCount)</div>
信息:1-我正在使用
@inherits System.Web.Mvc.WebViewPage<IPagedList<Social.ViewModels.ProductViewModelList>>
因为我需要将信息从IPagedList和ProductViewModelList传递到View。
2-如果我像<code><;IPagedList<;Social.ViewModels.ProductViewModelList>我收到了IPagedList属性的完整intelligense,但对于Viewmodels NumberofProducts、ProductBrowse、CategoryModel,我只收到它们的名称,而没有收到其他属性,例如ProductBrowse.ProductId。
3- I would like to display a URL of the type: http://www.domain.com/Controller/List?categoryId=2&page=1
4-我不知道我必须做什么才能包含的对象值
Html.Pager(Model.PageSize, Model.PageNumber, Model.TotalItemCount, ObjectValues for categoryId=2)
Sorry if this is a mess to understand, I tried my best in order to explain. thanks in advance.