我正在尝试在MVC控制器中实现过滤和分页。我使用ViewBag将信息传递给View。
过滤类是这样的:
public class Criteria
{
public int? SnapshotKey { get; set; }
public string Delq { get; set; }
public override string ToString()
{
string[] Ares = new string[2];
if (SnapshotKey.HasValue)
Ares[0] = "SnapshotKey=" + SnapshotKey.ToString();
if (!String.IsNullOrWhiteSpace(Delq))
Ares[1] = "Delq=" + Delq;
return String.Join("&", Ares.Where(s => !string.IsNullOrWhiteSpace(s)));
}
}
我的控制器方法是这样的:
public ActionResult Search(Criteria filter, string filterString,
int pageNo = 1, int pageSize = 5)
{
using (DemoDBEntities db = new DemoDBEntities())
{
var list = db.BMH.AsQueryable();
if (filter != null)
{
if (filter.SnapshotKey.HasValue)
list = list.Where(r => r.SnapshotKey == filter.SnapshotKey.Value);
if (!String.IsNullOrWhiteSpace(filter.Delq))
list = list.Where(r => r.Delq == filter.Delq);
}
list = list.OrderBy(r=>r.SnapshotKey).Skip((pageNo - 1) * pageSize).Take(pageSize);
ViewBag.Criteria = filter.ToString();
ViewBag.CriteriaString = filterString;
ViewBag.PageNo = pageNo;
return View(list.ToList());
}
}
AFAIK,我无法将ViewBag作为对象传递给控制器,这就是我使用filter.ToString()来存储当前过滤器的原因。
在View中,我有以下链接转到特定页面,同时保留当前过滤器。
@Html.ActionLink("Next Page", "Search", new { filter = ViewBag, filterString = ViewBag.CriteriaString, pageNo = ViewBag.PageNo + 1, pageSize = 5 })
因此,当从View返回时,我将当前过滤器作为字符串。现在在控制器中我需要将字符串转换为Criteria类。这是可行的,但我正在寻找一种更好的方式来做我需要的。
答案 0 :(得分:2)
filterString
方法中Search()
的值将是name=value&name=value...
格式的字符串,因此您可以先使用String.Split()
(&
字符)创建一个name=value
项的数组,然后再次拆分(在=
字符上)以获取属性名称和值,但这一切都变得混乱,并且更容易构建整个查询字符串,并将其直接绑定到您的Criteria
模型。
更改模型以包含所有属性,包括pageNo
和pageSize`
public class Criteria
{
public Criteria() // perhaps add some defaults?
{
PageNo = 1;
PageSize = 5;
}
public int? SnapshotKey { get; set; }
public string Delq { get; set; }
public int PageNo { get; set; }
public int PageSize { get; set; }
.... // see method below
}
然后为了使其灵活并允许您添加更多“条件”属性,请使用反射来构建查询字符串
public string ToQueryString(int pageIncrement)
{
List<string> propValues = new List<string>();
foreach(var prop in GetType().GetProperties())
{
var name = prop.Name;
var value = prop.GetValue(this);
if (name == "PageNo")
{
value == (int)value + pageIncrement;
}
if (value != null)
{
propValues .Add(String.Format("{0}={1}", name, value));
}
}
return "?" + String.Join("&", propValues);
}
控制器中的代码将是
public ActionResult Search(Criteria filter)
{
using (DemoDBEntities db = new DemoDBEntities())
{
var list = db.BMH.AsQueryable();
if (filter != null)
{
if (filter.SnapshotKey.HasValue)
list = list.Where(r => r.SnapshotKey == filter.SnapshotKey.Value);
if (!String.IsNullOrWhiteSpace(filter.Delq))
list = list.Where(r => r.Delq == filter.Delq);
}
list = list.OrderBy(r => r.SnapshotKey).Skip((filter.PageNo - 1) * pageSize).Take(filter.PageSize);
ViewBag.Criteria = filter;
return View(list.ToList());
}
}
然后在视图中
<a href="@Url.Action("Search")@ViewBag.Criteria.ToQueryString(-1)">Previous</a>
<a href="@Url.Action("Search")@ViewBag.Criteria.ToQueryString(1)">Next</a>
另请注意,您可以使用
@Html.ActionLink("Next", "Search", (yourAssembly.Criteria)ViewBag.Criteria)
假设Criteria
仅包含简单属性,这意味着不需要ToQueryString()
方法。但是,在使用PageNo
之前,您需要递增/递减ActionLink()
属性的值,例如
@{ var criteria = (yourAssembly.Criteria)ViewBag.Criteria; }
@{ criteria.PageNo = @criteria.PageNo - 1; }
@Html.ActionLink("Previous", "Search", criteria)
@{ criteria.PageNo = @criteria.PageNo + 2; }
@Html.ActionLink("Next", "Search", criteria)