在 ASP.NET MVC Razor 视图中显示枚举成员名称
在 ASP.NET MVC Razor 视图中使用通过显示属性增强的枚举时,有效访问这些显示名称对于创建用户友好的界面至关重要。 本文提出了实现此目的的解决方案。
挑战在于根据枚举成员的标志值检索其显示名称。 一种常见的方法涉及使用反射。 以下扩展方法 GetAttribute()
有助于实现此目的:
<code class="language-csharp">public static TAttribute GetAttribute<TAttribute>(this Enum enumValue) where TAttribute : Attribute { return enumValue.GetType() .GetMember(enumValue.ToString()) .First() .GetCustomAttribute<TAttribute>(); }</code>
此方法动态检索与枚举成员关联的任何属性。
将此应用到您的 Razor 视图,改进后的代码将如下所示:
<code class="language-csharp">@foreach (var aPromotion in Enum.GetValues(typeof(UserPromotion))) { var currentPromotion = (int)Model.JobSeeker.Promotion; if ((currentPromotion & aPromotion) == aPromotion) { @aPromotion.GetAttribute<DisplayAttribute>().Name } }</code>
此修订后的 Razor 代码利用 GetAttribute()
方法来获取循环中每个枚举成员的 DisplayAttribute
。 然后,检索到的属性的 Name
属性提供所需的显示名称。 这种方法可确保显示用户友好的名称而不是底层枚举值。
以上是如何获取 ASP.NET MVC Razor 视图中枚举成员的显示名称?的详细内容。更多信息请关注PHP中文网其他相关文章!