首页 > 后端开发 > C++ > 如何在MVC剃须刀视图中检索枚举名称?

如何在MVC剃须刀视图中检索枚举名称?

Barbara Streisand
发布: 2025-01-27 09:16:10
原创
614 人浏览过

How to Retrieve Enum Display Names in MVC Razor Views?

访问 MVC Razor 视图中的枚举显示名称

在 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 属性中存在的每个值(假设它是标志枚举),它使用扩展方法检索 DisplayAttributeName 属性并显示它。 这可确保仅显示选定的枚举值及其用户友好的显示名称。

以上是如何在MVC剃须刀视图中检索枚举名称?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板