我对 MVC 相当陌生。我正在尝试设置一个搜索数据库并返回结果的搜索页面。搜索框在我的视图中的 Html.BeginForm 内,如下所示:
<% using (Html.BeginForm())
{ %>
<%= Html.TextBox("searchBox", null, new { @id = "searchBox" })%>
<div id="searchButtonsDiv">
<input type="submit" value="Search" />
</div>
<% } %>
//Results are returned in a ul and orgainized
//Pagination below
<% if (Model.HasPreviousPage)
{ %>
<%= Html.RouteLink("Previous", "SearchResults", new { page = (Model.PageIndex - 1) })%>
<% } %>
<% if (Model.HasNextPage)
{ %>
<%= Html.RouteLink("Next", "SearchResults", new { formCollection = "", page = (Model.PageIndex + 1) })%>
<% } %>
我正在使用 FormCollection 传递给我的控制器,如下所示:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Index(FormCollection formCollection, int? page)
{
var searchString = formCollection["searchBox"];
var results = resultsRepository.GetResults();
var paginatedResults = new PaginatedList<Driver>(results, page ?? 0, pageSize);
return View(paginatedResults);
}
到现在为止还挺好。当我输入一个单词并按下提交按钮时,索引被调用并且数据库相应地返回。ul 会填充结果,当结果超过 pageSize 时(在我的情况下为 10),会显示 Next 链接。
当我单击“下一步”时,会加载默认页面。没有分页或类似的东西。我很确定这与我的 Index ActionResult 有一个 FormCollection 作为参数这一事实有关。我以为我在某个地方读到只能处理字符串/整数?这是地图路线:
routes.MapRoute(
"SearchResults",
"Drivers/Index/{formCollection}/{page}",
new { controller = "Drivers", action = "Index", formCollection = "", page = "" }
);
我完全错过了什么还是有办法处理这个?我知道我可以只使用 jquery/ajax 来发送包含在搜索列表框中的字符串,但我不想这样做,因为稍后我计划添加复选框作为过滤搜索等的手段。
我尝试了几种不同的方法来设置 formCollection 的值,包括创建一个添加 searchBox 的新 FormCollection,以及只传递字符串等。