mvc3中视图页面中访问CustomAttribute

发布于 2024-11-26 08:35:08 字数 334 浏览 3 评论 0原文

我创建了一个自定义属性“RoleAction”并添加到模型属性

public class RoleActionAttribute : Attribute
{
    public string UserRole { get; set; }

    public RoleActionAttribute(string Role)
    {
        this.UserRole = Role;
    }

}


[RoleAction("Manager")] 
public EmployeeName

如何在我的 mvc 视图页面中获取 RoleAction 值(管理器)。

I have created a custom attribute 'RoleAction' and added to the model property

public class RoleActionAttribute : Attribute
{
    public string UserRole { get; set; }

    public RoleActionAttribute(string Role)
    {
        this.UserRole = Role;
    }

}


[RoleAction("Manager")] 
public EmployeeName

How to I get the RoleAction value (Manager) in my mvc view page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤城病女 2024-12-03 08:35:08

您可以使用反射来获取自定义属性:

var roleAction = (RoleActionAttribute)typeof(MyViewModel)
    .GetProperty("EmployeeName")
    .GetCustomAttributes(typeof(RoleActionAttribute), true)
    .FirstOrDefault();
if (roleAction != null)
{
    var role = roleAction.UserRole;
}

另一种可能性是使用元数据并通过实现新的 IMetadataAware 接口,在 ASP.NET MVC 3 中引入:

public class RoleActionAttribute : Attribute, IMetadataAware
{
    public string UserRole { get; set; }

    public RoleActionAttribute(string Role)
    {
        this.UserRole = Role;
    }

    public void OnMetadataCreated(ModelMetadata metadata)
    {
        metadata.AdditionalValues["role"] = UserRole;
    }
}

然后:

var metaData = ModelMetadataProviders
    .Current
    .GetMetadataForProperty(null, typeof(MyViewModel), "EmployeeName");
if (metaData != null)
{
    string userRole = metaData.AdditionalValues["role"] as string;
}

You could use Reflection in order to fetch custom attributes:

var roleAction = (RoleActionAttribute)typeof(MyViewModel)
    .GetProperty("EmployeeName")
    .GetCustomAttributes(typeof(RoleActionAttribute), true)
    .FirstOrDefault();
if (roleAction != null)
{
    var role = roleAction.UserRole;
}

Another possibility is to use Metadata and make your custom attribute metadata aware by implementing the new IMetadataAware interface that was introduced in ASP.NET MVC 3:

public class RoleActionAttribute : Attribute, IMetadataAware
{
    public string UserRole { get; set; }

    public RoleActionAttribute(string Role)
    {
        this.UserRole = Role;
    }

    public void OnMetadataCreated(ModelMetadata metadata)
    {
        metadata.AdditionalValues["role"] = UserRole;
    }
}

and then:

var metaData = ModelMetadataProviders
    .Current
    .GetMetadataForProperty(null, typeof(MyViewModel), "EmployeeName");
if (metaData != null)
{
    string userRole = metaData.AdditionalValues["role"] as string;
}
嘿咻 2024-12-03 08:35:08

您可以使用 TempData 来实现。

You can use TempData for it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文