在 MVC Razor 视图中有效显示枚举显示名称需要访问属性元数据。 这可以使用利用反射的自定义扩展方法来优雅地处理。
以下扩展方法提供了一个干净的解决方案:
<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>
此方法使用反射来检查枚举类型并检索与与提供的枚举值匹配的枚举成员关联的指定类型 (TAttribute
) 的第一个属性。
以下是如何将此扩展方法集成到 Razor 视图中:
<code class="language-csharp">@foreach (int aPromotion in Enum.GetValues(typeof(UserPromotion))) { var currentPromotion = (int)Model.JobSeeker.Promotion; if ((currentPromotion & aPromotion) == aPromotion) { <p>@((UserPromotion)aPromotion).GetAttribute<DisplayAttribute>().Name</p> } }</code>
此代码迭代 UserPromotion
枚举值。 对于 Model.JobSeeker.Promotion
属性中存在的每个值(假设它是标志枚举),它使用扩展方法检索 DisplayAttribute
的 Name
属性并显示它。 这可确保仅显示选定的枚举值及其用户友好的显示名称。
以上是如何在MVC剃须刀视图中检索枚举名称?的详细内容。更多信息请关注PHP中文网其他相关文章!