我有一个带过滤器参数的网页,并创建了一个简单的类来通过 Where()方法继续该参数。
但是通过Html.Action传递params有一个问题。
搜索选项:
public class Document
{
public string Name { get; set; }
public string Title { get; set; }
public string Param1{ get; set; }
public string Param2{ get; set; }
}
控制器操作
public ActionResult Index(int? page, Document filter)
{
ViewBag.Params= documentFilter;
IEnumerable<Document> DocumentList = dbContext.Documents.ToList();
DocumentList = DocumentList.CustomFilter(documentFilter);
var pageNumber = page ?? 1;
var onePageOfProducts = DocumentList.ToPagedList(pageNumber, 50);
ViewBag.Documents = onePageOfProducts;
return View();
}
过滤效果很好,但是如果你使用分页控制,params将丢失。
分页助手:
@Html.PagedListPager((IPagedList)ViewBag.Documents,
page => Url.Action("Index", new { page , filter = (Document)ViewBag.filter}))
//Also tried Model instead of ViewBag.filter
我无法将params传递给行动控制。
有没有办法做到这一点?
答案 0 :(得分:1)
您需要使用ajax调用而不是帮助程序。编写ajax调用并将参数作为post方法传递。
答案 1 :(得分:1)
看起来ViewBag.filter从未设置过,因此您的分页将无效。
这是一个很好的教程,可以详细回答您的问题: http://www.asp.net/mvc/overview/getting-started/getting-started-with-ef-using-mvc/sorting-filtering-and-paging-with-the-entity-framework-in-an-asp-net-mvc-application