.net MVC 中枚舉類型Enum 轉化成 下拉列表的數據源

来源:http://www.cnblogs.com/jackmary/archive/2016/12/02/6125606.html
-Advertisement-
Play Games

第一次寫技術博文,記錄下工作中遇到的問題,給自己的知識做個備份,也希望能幫助到其他的同學 最近接手了公司的一個新的項目。有個頁面涉及相關設計。 分享一個經常用到的吧。 方法一: 直入主題吧 我們的目的是把 Enum類型裡面的 Enum: 實現效果: 拓展類: Attribute 類 Controll ...


第一次寫技術博文,記錄下工作中遇到的問題,給自己的知識做個備份,也希望能幫助到其他的同學

最近接手了公司的一個新的項目。有個頁面涉及相關設計。 分享一個經常用到的吧。

 

方法一:

直入主題吧

我們的目的是把 Enum類型裡面的

Enum:

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace AirExpress.Core
{
    public enum PackageExceptionTypeEnums
    {
        [Display(Name = "破損")]
        Damaged = 1,

        [Display(Name = "違禁品")]
        ContrabandGoods = 2,

        [Display(Name = "超件")]
        BeyondPackages = 3
    }
}

 

實現效果:

拓展類:

public static class EnumExtention
    {

        public static SelectList ToSelectList<T>(int? selectValue = null,string AttributeName ="Name")
        {
            IList<SelectListItem> selectItemList = new List<SelectListItem>();
            Type enumType = typeof(T);
            Type attrType = typeof(DisplayAttribute);
            foreach (int value in Enum.GetValues(typeof(T)))
            {
                SelectListItem item = new SelectListItem();

                string name = Enum.GetName(enumType, value);
                object[] objAttrs = enumType.GetField(name).GetCustomAttributes(attrType, true);
                if(objAttrs!=null && objAttrs[0] is DisplayAttribute)
                {
                    DisplayAttribute descAttr = objAttrs[0] as DisplayAttribute;
                    PropertyInfo propertyName = attrType.GetProperty(AttributeName);
                    item.Text = propertyName.GetValue(descAttr).ToString();
                }else
                {
                    item.Text = Enum.GetName(enumType, value);
                }
                    
                item.Value = value.ToString();
                item.Selected = value == selectValue ? true : false;
                selectItemList.Add(item);
            }

            SelectList selectList = new SelectList(selectItemList, "Value", "Text", selectValue.Value);
            return selectList;
        }
    }

 

Attribute 類

public  class DisplayAttribute : Attribute
    {

        public string Name { get; set; }
        public string FullName { get; set; }

    }

 

 

Controller:

ViewBag.IndexexceptionSelectedList = EnumsExtension.ToSelectList<PackageExceptionTypeEnums>(input.ExceptionType);

 

View:

@Html.DropDownListFor(m => m.ExceptionType, ViewBag.exceptionSelectedList as SelectList, "----請選擇----")

 

方法二:

。net MVC  里其實也自帶了相應的 下拉列表拓展

EnumDropDownListFor

 後來我找資料的時候無意中看到了。 那就不用自己再去實現一遍了

 

讓我們先看下MVC自帶的源碼文件:

 public static class SelectExtensions
    {
      
        public static MvcHtmlString DropDownList(this HtmlHelper htmlHelper, string name);
        
        public static MvcHtmlString DropDownList(this HtmlHelper htmlHelper, string name, IEnumerable<SelectListItem> selectList);
       
        public static MvcHtmlString DropDownList(this HtmlHelper htmlHelper, string name, string optionLabel);
        
        public static MvcHtmlString DropDownList(this HtmlHelper htmlHelper, string name, IEnumerable<SelectListItem> selectList, IDictionary<string, object> htmlAttributes);
        
        public static MvcHtmlString DropDownList(this HtmlHelper htmlHelper, string name, IEnumerable<SelectListItem> selectList, object htmlAttributes);
        
        public static MvcHtmlString DropDownList(this HtmlHelper htmlHelper, string name, IEnumerable<SelectListItem> selectList, string optionLabel);
        
        public static MvcHtmlString DropDownList(this HtmlHelper htmlHelper, string name, IEnumerable<SelectListItem> selectList, string optionLabel, IDictionary<string, object> htmlAttributes);
        
        public static MvcHtmlString DropDownList(this HtmlHelper htmlHelper, string name, IEnumerable<SelectListItem> selectList, string optionLabel, object htmlAttributes);
       
        public static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList);
        
        public static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList, IDictionary<string, object> htmlAttributes);
       
        public static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList, object htmlAttributes);
       
        public static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList, string optionLabel);
       
        public static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList, string optionLabel, IDictionary<string, object> htmlAttributes);
        
        public static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList, string optionLabel, object htmlAttributes);
       
        public static MvcHtmlString EnumDropDownListFor<TModel, TEnum>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TEnum>> expression);
        
        public static MvcHtmlString EnumDropDownListFor<TModel, TEnum>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TEnum>> expression, IDictionary<string, object> htmlAttributes);
       
        public static MvcHtmlString EnumDropDownListFor<TModel, TEnum>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TEnum>> expression, object htmlAttributes);
       
        public static MvcHtmlString EnumDropDownListFor<TModel, TEnum>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TEnum>> expression, string optionLabel);
       
        public static MvcHtmlString EnumDropDownListFor<TModel, TEnum>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TEnum>> expression, string optionLabel, IDictionary<string, object> htmlAttributes);
        
        public static MvcHtmlString EnumDropDownListFor<TModel, TEnum>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TEnum>> expression, string optionLabel, object htmlAttributes);
       
        public static MvcHtmlString ListBox(this HtmlHelper htmlHelper, string name);
        
        public static MvcHtmlString ListBox(this HtmlHelper htmlHelper, string name, IEnumerable<SelectListItem> selectList);
        
        public static MvcHtmlString ListBox(this HtmlHelper htmlHelper, string name, IEnumerable<SelectListItem> selectList, IDictionary<string, object> htmlAttributes);
       
        public static MvcHtmlString ListBox(this HtmlHelper htmlHelper, string name, IEnumerable<SelectListItem> selectList, object htmlAttributes);
        
        public static MvcHtmlString ListBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList);
        
        public static MvcHtmlString ListBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList, IDictionary<string, object> htmlAttributes);
        
        public static MvcHtmlString ListBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList, object htmlAttributes);
    }

 

 

view:

//x.TakeoOffPeriod 是枚舉類型

  @Html.EnumDropDownListFor(x => x.TakeoffPeriod, new AirExpress.Core.TakeoffPeriod())

Enum:

  public enum TakeoffPeriod
    {
        [Display(Name = "全天")]
        Allday = 1,
        [Display(Name = "早班6:00-10:00")]
        Morning = 2,
        [Display(Name = "午班10:00-18:00")]
        Noon = 3,
        [Display(Name = "晚班18:00-次日6:00")]
        Night =4
    }

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • "原文地址:FileProvider" By [Steve Smith][1] ASP.NET Core通過對File Providers的使用實現了對文件系統訪問的抽象。 [查看或下載示例代碼][2] File Provider 抽象 File Providers是文件系統之上的一層抽象。它的主要 ...
  • 參考:http://www.cnblogs.com/dunitian/p/5218140.html 簡單點,直接上用法 新建MVC項目,在golbal.asax中添加如下代碼 新建一個view,增加iphone.cshtml為尾碼的文件 那麼如果user-agent中包含iphone,就會打開該頁面 ...
  • 一年多沒更新博客園內容了,core已經發生了翻天覆地的變化,想起2014年這時候,我就開始了從當時還叫k的那套preview都不如的vnext搭建這套系統,陸陸續續它每一次升級,我也相應地折騰,大約4個月前,我開始把生產環境的一部分從 windows server 遷移到 centos 7 上,觀察... ...
  • 其實任何資料裡面的任何知識點都無所謂,都是不重要的,重要的是學習方法,自行摸索的過程(不妥之處歡迎指正) 彙總:http://www.cnblogs.com/dunitian/p/4822808.html#mvc 本章Demo:https://github.com/dunitian/LoTCodeB ...
  • 電子樞紐全稱國家交通運輸物流公共信息平臺,主要提供物流及生產企業進行物流相關數據交換的標準和API。信用中心是電子樞紐眾多數據服務中的一個,提供物流參與者信用信息的上傳和查詢,包括運輸車輛、從業人員等。官方的示例和介紹大多以Java為主,.net的非常少,希望本文可以幫助.net開發人員快速掌握數據... ...
  • 需求:OAuth2實現第三方網站授權並獲取其相關數據來實現登錄等功能 暫時支持Facebook ,LinkedIn ,基本大同小異,只是返回時的數據不同,需根據具體返回類型進行相應處理 1.OAuth2認證流程 OAuth2認證協議涉及3方(應用、用戶和服務方),加之流程較為繁瑣,實現命名不盡相同, ...
  • ADO.NET是.NET中一組用於和數據源進行交互的面向對象類庫,提供了數據訪問的高層介面。 ADO.NOT類庫在System.Data命名空間內,根據我們訪問的不同資料庫選擇命名空間,System.Data.SqlClient。 ADO.NET類最重要的優點是支持資料庫以斷開連接的方式工作。 AD ...
  • 有好幾年沒有用過EasyUI了,最近在外包做的一個項目中新增功能時,又用到了,本以為和按照以前那樣用就可以了,可當我真正用的時候,發現許多地方不一樣了,就連官網的文檔都更新了,最突出的就是不知道什麼時候起多了一個data-options屬性。 記得,在過去一直都是用js直接調用的,現在突然變成dat ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...