第三方分页
Posted xuan666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第三方分页相关的知识,希望对你有一定的参考价值。
@using PagedList.Mvc;
@model PagedList.IPagedList<ShenPiMvc.Models.JiaViewModel>
每页 @Model.PageSize 条记录,共 @Model.PageCount 页,当前第 @Model.PageNumber 页 @html.PagedListPager(Model,pageIndex=>Url.Action("ShowJt",new { pageIndex }), new PagedListRenderOptions { LinkToFirstPageFormat="首页", LinkToNextPageFormat="下一页", LinkToPreviousPageFormat="上一页", LinkToLastPageFormat="末页", MaximumPageNumbersToDisplay=0, DisplayItemSliceAndTotal=false } )
//显示假条 --组员 public ActionResult ShowJt(int pageIndex=1) { ViewBag.uname = Session["uname"]; string result = HttpClientHelper.Send("get", "api/jia", null); List<JiaViewModel> jias = JsonConvert.DeserializeObject<List<JiaViewModel>>(result); //每页显示5条 pageIndex为当页索引 int pageSize = 4; //总记录数 int toTalCount = jias.Count; //总记录数 IPagedList<JiaViewModel> pagedList = jias.ToPagedList(pageIndex, pageSize); return View(pagedList); }
以上是关于第三方分页的主要内容,如果未能解决你的问题,请参考以下文章
FragmentStatePagerAdapter 视图分页器片段在活动重新创建后不显示
FragmentStatePagerAdapter视图分页器片段在重新创建活动后未显示