我创建了一个自定义属性'RoleAction'并添加到模型属性
public class RoleActionAttribute : Attribute
{
public string UserRole { get; set; }
public RoleActionAttribute(string Role)
{
this.UserRole = Role;
}
}
[RoleAction("Manager")]
public EmployeeName
如何在mvc视图页面中获取RoleAction值(Manager)。
答案 0 :(得分:1)
您可以使用Reflection来获取自定义属性:
var roleAction = (RoleActionAttribute)typeof(MyViewModel)
.GetProperty("EmployeeName")
.GetCustomAttributes(typeof(RoleActionAttribute), true)
.FirstOrDefault();
if (roleAction != null)
{
var role = roleAction.UserRole;
}
另一种可能性是使用元数据并通过实现ASP.NET MVC 3中引入的新IMetadataAware接口来识别自定义属性元数据:
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;
}
答案 1 :(得分:0)
您可以使用TempData
。