程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 詳解Asp.net MVC DropDownLists

詳解Asp.net MVC DropDownLists

編輯:.NET實例教程

Asp.net MVC中的DropDownLists貌似會讓一開始從Asp.net Forms轉過來的程序員造成不少迷惑.這篇文章講述了為了使用DropDownLists,你需要在ASP.Net MVC中知道的方方面面.

DropDownList,ComboBox,無論你喜歡怎麼稱呼這些,他們毫無例外的會被生成為Html select標簽.在<select>開標簽和</select>閉標簽之間,每一個列表元素都必須被包裹於<option>標簽.當然你也可以使用<optgroup>標簽將各個選項按邏輯上分成不同的組。如果針對<option>設置了value屬性,則Value屬性就是在form提交時select元素的值.而如果忘了給value屬性賦值,則在<option></option>標簽內包裹的內容則是被提交的值。

為了簡便起見,這裡我先用一個靜態的列表作為例子,你可以將這些作為Html直接加入到你的VIEw中:

<select name="year">
  <option>2010</option>
  <option>2011</option>
  <option>2012</option>
  <option>2013</option>
  <option>2014</option>
  <option>2015</option>
</select>

    或者,給列表加點小動態,假如需要列表的年份會隨著新年到來之際自動往後推1年:

<select name="year">
  <option><%= DateTime.Now.Year %></option>
  <option><%= DateTime.Now.AddYears(1).Year %></option>
  <option><%= DateTime.Now.AddYears(2).Year %></option>
  <option><%= DateTime.Now.AddYears(3).Year %></option>
  <option><%= DateTime.Now.AddYears(4).Year %></option>
  <option><%= DateTime.Now.AddYears(5).Year %></option>
</select>

    甚至可以更簡便:

<select name="year">
  <% for (var i = 0; i < 6; i++){%>
    <option><%= DateTime.Now.AddYears(i).Year %></option>
  <%}%>
</select>

    上面三個代碼段生成效果相同,如下:

如果的數據是來自數據庫,那最好還是使用Html.DropDownList()擴展方法的八個重載方法來創建DropDownList.在這裡我並不會一一說明這些不同的重載,但是會說明主要重載。第一種重載-public static string DropDownList(this HtmlHelper HtmlHelper, string name)-僅僅接受一個string類型的參數.幫助文檔中只是簡單說明了這個string參數是<select>的name屬性是遠遠不夠的,這個參數不僅是<select>元素的name和id的值,還用於在ViewData查找元素,如果這個string參數和ViewData的key相匹配,ViewData元素會和helper進行綁定來創建<option>,同時,VIEwData元素的類型必須是SelectListItems的集合.下面代碼是使用LINQ TO SQL來從Northwind數據庫中提取種類,使用DropDownList擴展方法的第一個重載:

public ActionResult Index()
{
  var db = new NorthwindDataContext();
  IEnumerable<SelectListItem> items = db.Categories
    .Select(c => new SelectListItem
                   {
                     Value = c.CategoryID.ToString(), 
                     Text = c.CategoryName
                   });
  ViewData["CategoryID"] = items;
  return VIEw();
}

注意每一個SelectListItem對象都必須給Value和Text屬性進行賦值。他們會在運行時分別匹配到Html的<option>的value屬性和<option></option>之間的內容。注意這裡VIEwData的key用“CategoryID”顯得有點奇怪,但實際上CategoryID正式<select>向服務器提交的值,所以使用這樣的命名是有實際意義的。在VIEw中,使用重載方法:

<%= Html.DropDownList("CategoryID") %>

而對應生成的Html如下:

&l
t;select id="CategoryID" name="CategoryID"> <option value="1">Beverages</option> <option value="2">Condiments</option> <option value="3">Confections</option> <option value="4">Dairy Products</option> <option value="5">Grains/Cereals</option> <option value="6">Meat/Poultry</option> <option value="7">Produce</option> <option value="8">Seafood</option> </select>

Html.DropDownList的第二種重載方法-public static string DropDownList(this HtmlHelper HtmlHelper, string name, IEnumerable<SelectListItem> selectList)-是經常被使用的。在這個重載中,你可以使用IEnumerable<SelectListItem>或者SelectList對象作為參數。首先再看返回上述兩個對象的方法之前,先看在VIEw中的代碼:

<%= Html.DropDownList("CategoryID", (IEnumerable<SelectListItem>) ViewData["CategorIEs"]) %>

我們先說存入VIEwData的第一種對象類型-IEnumerable<SelectListItem>對象,代碼和前面的例子很像:

public ActionResult Index()
{
  var db = new NorthwindDataContext();
  IEnumerable<SelectListItem> items = db.Categories
    .Select(c => new SelectListItem
                   {
                     Value = c.CategoryID.ToString(),
                     Text = c.CategoryName
                   });
  ViewData["Categories"] = items;
  return VIEw();
}

再看在VIEwData中存入SelectList類型的代碼:

public ActionResult Index()
{
  var db = new NorthwindDataContext();
  var query = db.Categories.Select(c => new { c.CategoryID, c.CategoryName });
  ViewData["Categories"] = new SelectList(query.AsEnumerable(), "CategoryID", "CategoryName");
  return VIEw();
}

使用SelectList使Controller中的代碼稍微整潔了一些,當然在VIEw中也同樣。SelectList的構造函數有好幾個重載可以接受對象作為參數來代表被選擇的選項:

public ActionResult Index()
{
  var db = new NorthwindDataContext();
  var query = db.Categories.Select(c => new { c.CategoryID, c.CategoryName });
  ViewData["Categories"] = new SelectList(query.AsEnumerable(), "CategoryID", "CategoryName", 3);
  return VIEw();
}

上面代碼會讓”Confections”在列表生成後被選中:

 默認值

上面所有例子都會在頁面載入後默認選擇第一個選項,但很多情況下,需要一個默認值來代替第一個值被選擇,這個默認值可以是空或者是提示用戶”請選擇”,或者類似的。DropDownList還有一個重載可以實現這點-public static string DropDownList(this HtmlHelper HtmlHelper, string name, IEnumerable<SelectListItem> selectList, string optionLabel).

<%= Html.DropDownList("CategoryID", (SelectList) VIEwData["CategorIEs"], "--Select One--") %> 

 CSS和Html屬性

DropDownList有四個重載可以在DropDownList被生成後添加HTML屬性.其中有兩個接受IDictionary<string, object>作為參數,而另外兩個以匿名對象作為參數。下面兩段代碼生成相同的Html,都添加CSS選擇符和綁定客戶端onchange()事件:

 

<%= Html.DropDownList(
    "CategoryID", 
    (SelectList)ViewData["CategorIEs"], 
    "--Select One--", 
    new Dictionary<string, object>
                      {
                         {"class", "myCSSClass"}, 
                         {"onchange", "someFunction();"}
                      }) %>
                      
                      
<%=Html.DropDownList(
    "CategoryID", 
    (SelectList) ViewData["CategorIEs"], 
    "--Select One--", 
    new{
          @class = "myCSSClass", 
          onchange = "someFunction();"
       }) %>

你也許已經注意到了第二段代碼中有個叫@class的屬性,它還是會被生成為”class”但class是C#的關鍵字所以需要在屬性名前加上”@”,你也許還會想為什麼需要兩個不同的重載來實現為html添加標簽?第二段代碼中使用匿名方法顯得代碼更簡潔和優美,當然選擇第二段的寫法。但是HTML 5的說明中提到可以動態的為Html元素添加自定義屬性,而自定義屬性必須以“data-”作為開頭,而如果你嘗試在C#對象中創建的屬性名中有連字符(譯者注:也就是”-”),就會產程編譯錯誤,所以Dictionary<string, object>作為參數就能很好的解決這個問題。

AutoPostBack哪去了?

從前使用web Form開發的程序員經常會問到AutoPostBack跑哪去了?使用IDE,並且在AutoPostBack打個勾是非常容易的。而正是因為容易使用,所以大多開發人員不會去想AutoPostBack是怎樣的機制。實際上,如果你選擇AutoPostBack,則DropDownList會被添加一個引發Javascript事件的onchange屬性,導致DropDownList所在的form被提交。這個過程在MVC中必須手動實現,但是也非常簡單,我下面的代碼用兩種方式實現這點,第一段代碼中的方式通過object作為參數來設置Html的屬性,另一段代碼使用jQuery來實現同樣的效果。毫不謙虛的說,我已經將DropDownList在form中的大部使用都寫出來了,下面是第一種方法:

<% using (Html.BeginForm("Index", "Home", FormMethod.Post, new { id = "TheForm" })){%>
  <%= Html.DropDownList(
    "CategoryID", 
    (SelectList) ViewData["CategorIEs"], 
    "--Select One--", 
    new{
          onchange = "document.getElementById('TheForm').submit();"
       })%>
<%}%> 

下面是使用jQuery的方法

<script type="text/Javascript">
  $(function() {
    $("#CategoryID").change(function() {
      $('#TheForm').submit();
    });
  });
</script>

<%using (Html.BeginForm("Index", "Home", FormMethod.Post, new { id = "TheForm" })){%>
  <%=Html.DropDownList("CategoryID", (SelectList) ViewData["CategorIEs"], "--Select One--") %>
<%}%> 

提示

在HtmlHelper中並沒有提供為DropDownList添加提示的重載,提示是通過設置<option>中的title屬性來實現的,當然你可以實現自己的HtmlHelper來通過列表為每個title賦上相應的值,但是這有點麻煩。卻而代之的是,你可以使用jQuery來很容易的實現這點:


<script type="text/Javascript"> $(function() { $("#CategoryID option").each(function() { $(this).attr({'title': $(this).Html()}); }); }); </script>

 

----------------------------------------------

原文鏈接:http://www.mikesdotnetting.com/Article/128/Get-The-Drop-On-ASP.Net-MVC-DropDownLists

譯文:http://www.cnblogs.com/CareySon/archive/2010/01/08/1642057.Html

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved