使用C#在ASP.NET MVC 3中建立級聯下拉式選單:簡化方法
引言
本文提供了一種簡單易行的方法,用於在ASP.NET MVC 3和C#中建立級聯下拉式選單。
模型
首先,定義一個模型類別來表示視圖資料:
<code class="language-csharp">public class MyViewModel { public int? Year { get; set; } public int? Month { get; set; } public IEnumerable<SelectListItem> Years { get; set; } }</code>
控制器
控制器處理兩個下拉式選單的操作:
<code class="language-csharp">public ActionResult Index() { var model = new MyViewModel { Years = GetYears() }; //添加获取年份数据的调用 return View(model); } private IEnumerable<SelectListItem> GetYears() { //此处替换为你的年份数据获取逻辑,例如从数据库获取 return Enumerable.Range(2010, 15).Select(year => new SelectListItem { Value = year.ToString(), Text = year.ToString() }); } public ActionResult Months(int year) { if (year == 2011) { return Json(Enumerable.Range(1, 3).Select(x => new { value = x, text = x }), JsonRequestBehavior.AllowGet); } return Json(Enumerable.Range(1, 12).Select(x => new { value = x, text = x }), JsonRequestBehavior.AllowGet); }</code>
視圖
視圖包含下拉式選單與實作級聯功能的JavaScript程式碼:
<code class="language-html">@model AppName.Models.MyViewModel @Html.DropDownListFor( x => x.Year, Model.Years, "-- 选择年份 --" ) @Html.DropDownListFor( x => x.Month, Enumerable.Empty<SelectListItem>(), "-- 选择月份 --" ) <script> $('#Year').change(function () { var selectedYear = $(this).val(); if (selectedYear != null && selectedYear != '') { $.getJSON('@Url.Action("Months")', { year: selectedYear }, function (months) { var monthsSelect = $('#Month'); monthsSelect.empty(); $.each(months, function (index, month) { monthsSelect.append($('<option>', { value: month.value, text: month.text })); }); }); } }); </script></code>
此修改後的程式碼對模型進行了細微調整,並添加了從控制器獲取年份資料的函數,使程式碼更清晰、更易於維護和擴展。 視圖中的JavaScript也做了細微調整,使其更符合規格。 請確保你的專案中已正確引用必要的jQuery庫。
以上是如何使用 C# 在 ASP.NET MVC 3 中建立級聯下拉式選單?的詳細內容。更多資訊請關注PHP中文網其他相關文章!