Asp.net MVC3.0 入门指南 7.1 展示查找页面
添加一個查找方法和查找視圖
在這一節(jié)我們將實現(xiàn)一個SearchIndex響應(yīng)方法,允許您按流派或名字查找電影。
它利用網(wǎng)址/Movies/SearchIndex。請求將展示一個HTML頁面,它包含為了查
找電影由用戶輸入的input控件。當用戶提交頁面時,響應(yīng)方法將獲得由用戶post
的查找條件并依據(jù)條件查詢數(shù)據(jù)庫。最終的效果圖如下所示 。
?
展示查找頁面
首先,在MoviesController類中添加一個SearchIndex響應(yīng)方法。這個方法返回一個包含HTML
頁面的視圖。代碼如下:
public ActionResult SearchIndex(string searchString) {var movies = from m in db.Moviesselect m;if (!String.IsNullOrEmpty(searchString)) {movies = movies.Where(s => s.Title.Contains(searchString));}return View(movies); } ?
SearchIndex方法的第一行創(chuàng)建了以下的LINQ查詢來查詢電影:
var movies = from m in db.Moviesselect m; ?
查詢在這里定義,但卻沒有執(zhí)行!(譯注:LINQ在需要執(zhí)行的時候才會執(zhí)行。
一般來說,真正需要使用數(shù)據(jù)時才真正執(zhí)行)
如果參數(shù)searchString不是空字符串,電影的查詢被修改為過濾查找字符串,
使用如下代碼:
??
if (!String.IsNullOrEmpty(searchString)) {movies = movies.Where(s => s.Title.Contains(searchString)); }當定義或通過Where、OrderBy方法修改時,LINQ查詢并沒有執(zhí)行。相反,
查詢的執(zhí)行被延遲,這意味著LINQ表達式一直被延遲到它真實的值被遍歷
(循環(huán))或被ToList方法調(diào)用。在SearchIndex方法中,LINQ查詢在SearchIndex
視圖中執(zhí)行。了解更多關(guān)于延遲查詢執(zhí)行,參見Query Execution。
現(xiàn)在您可以實現(xiàn)SearchIndex視圖展示給用戶。右鍵SearchIndex方法內(nèi)部并單擊
“Add View”,在“Add View”對話框中,指明您將傳遞Movie對象給視圖模板
作為它的模型類。在架構(gòu)模板(Scaffold template)列表中,選擇List,單擊Add。
當您單擊Add按鈕時,視圖模板Views\Movies\SearchIndex.cshtml被創(chuàng)建。
因為您在架構(gòu)模板(Scaffold template)選擇List,Visual Studio自動在視
圖中生成了一些內(nèi)容。架構(gòu)創(chuàng)建了一個HTML窗體。它檢查Movie類并為每個
類屬性創(chuàng)建代碼來輸出<label>元素。下面展示了自動生成的創(chuàng)建視圖:
?
@model IEnumerable<MvcMovie.Models.Movie>@{ ViewBag.Title = "SearchIndex"; }<h2>SearchIndex</h2><p>@Html.ActionLink("Create New", "Create") </p> <table><tr><th>Title</th><th>ReleaseDate</th><th>Genre</th><th>Price</th><th></th></tr>@foreach (var item in Model) {<tr><td>@Html.DisplayFor(modelItem => item.Title)</td><td>@Html.DisplayFor(modelItem => item.ReleaseDate)</td><td>@Html.DisplayFor(modelItem => item.Genre)</td><td>@Html.DisplayFor(modelItem => item.Price)</td><td>@Html.ActionLink("Edit", "Edit", new { id=item.ID }) |@Html.ActionLink("Details", "Details", new { id=item.ID }) |@Html.ActionLink("Delete", "Delete", new { id=item.ID })</td></tr> }</table>運行程序,并導航到/Movies/SearchIndex。給URL追加一個查詢字符串,比如
?searchString=ghost。篩選后的電影顯示如下。
如果您改變SearchIndex方法的簽名,改為一個名叫id的參數(shù),id參數(shù)會匹配默認路由{id}占位符
集合(在Global.asax文件中)。
{controller}/{action}/{id}修改后的SearchIndex方法看起來如下所示:
??
public ActionResult SearchIndex(string id) {string searchString = id;var movies = from m in db.Moviesselect m;if (!String.IsNullOrEmpty(searchString)) {movies = movies.Where(s => s.Title.Contains(searchString));}return View(movies); }?
? 您現(xiàn)在可以使用路由數(shù)據(jù)(一個URL片段)來傳遞查找標題,而不是作為一個查詢字符串了。
(譯注:注意和上一個張圖比較,看看URL發(fā)生了什么變化!)
但是,您不能期望用戶每次查找電影都來修改URL!所以現(xiàn)在您需要添加UI來幫助他們篩選電影。
如果您改變SearchIndex的簽名來測試如何傳遞路由綁定參數(shù)ID,把它改回原樣。(譯注:剛才
只是為了說明默認路由的作用)
?
public ActionResult SearchIndex(string searchString) {var movies = from m in db.Moviesselect m;if (!String.IsNullOrEmpty(searchString)) {movies = movies.Where(s => s.Title.Contains(searchString));}return View(movies); } ?打開文件Views\Movies\SearchIndex.cshtml,
并在后@Html.ActionLink("Create New", "Create"),添加如下代碼:
?
@using (Html.BeginForm()) { <p>Title: @Html.TextBox("SearchString")<input type="submit" value="Filter" /></p> }?
下面的例子展示了Views\Movies\SearchIndex.cshtml文件的一部分被添加的過濾
標記。
?
@model IEnumerable<MvcMovie.Models.Movie> @{ ViewBag.Title = "SearchIndex"; } <h2>SearchIndex</h2> <p>@Html.ActionLink("Create New", "Create")@using (Html.BeginForm()) { <p>Title: @Html.TextBox("SearchString")<br /><input type="submit" value="Filter" /></p> } </p>?
Html.BeginForm助手創(chuàng)建了一個開放的<form>標簽。Html.BeginForm助手
使得當用戶單擊Filter按鈕時頁面提交form給自己。
運行程序并試著查找電影。
?
未完待續(xù)。。。
原文網(wǎng)址:http://www.asp.net/mvc/tutorials/getting-started-with-mvc3-part6-cs
轉(zhuǎn)載于:https://www.cnblogs.com/BingoLee/archive/2011/06/28/2092060.html
總結(jié)
以上是生活随笔為你收集整理的Asp.net MVC3.0 入门指南 7.1 展示查找页面的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 浑身疼痛怎么回事?
- 下一篇: JQuery实现表格行当复制