如何在EditorFor中访问C#模型属性

时间:2012-09-17 09:27:38

标签: c# asp.net-mvc-2 partial-views

我有一个如下模型:

public class CreateStockcheckJobModel
{
    [Engineer(true)]
    public EngineerModel Engineer { get; set; }
}

我使用EngineerView<CreateStockcheckJobModel>中呈现Html.EditorFor(m => m.Engineer, "EngineerEditor")属性。

如何从部分视图(Engineer)的代码中访问true属性(本例中为EngineerEditor.ascx)中的值?


以下是我的编辑代码

<%@ Control Language="C#" Inherits="ViewUserControl<EngineerModel>" %>
<% if (PropertyImRenderingHasAttributeWithTrueBooleanValue) // What goes here?
   { %>
<p>Render one thing</p>
<% }
   else
   { %>
<p>Render another thing</p>
<% } %>

我知道反思,但我不确定如何使用它,因为该属性未添加到EngineerModel类中,而是添加到{Engineer 1 {} CreateStockcheckJobModel类的属性。如果我可以从编辑器代码中获取PropertyInfo,那么我就会对其进行排序,但我不知道如何获取该信息。如果我沿着CreateStockcheckJobModel类中列举所有属性的路线,那么如果我有多个EngineerModel属性,我将会遇到问题(一个属性可能带{{1}另一个可能有True)。

2 个答案:

答案 0 :(得分:7)

通过在自定义EngineerAttribute上实现IMetadataAware界面,可以在ASP.NET MVC 3及更高版本中轻松完成此操作:

public class EngineerAttribute : Attribute, IMetadataAware
{
    public EngineerAttribute(bool isFoo)
    {
        IsFoo = isFoo;
    }

    public bool IsFoo { get; private set; }

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

然后在模板中:

<%@ Control Language="C#" Inherits="ViewUserControl<EngineerModel>" %>
<%
    var isFoo = (bool)ViewData.ModelMetadata.AdditionalValues["IsFoo"];
%>
<% if (isFoo) { %>
    <p>Render one thing</p>
<% } else { %>
    <p>Render another thing</p>
<% } %>

不幸的是,ASP.NET MVC 2中不存在此接口。要实现相同的功能,您可以编写自定义元数据提供程序:

public class MyMetadataProvider : DataAnnotationsModelMetadataProvider
{
    protected override ModelMetadata CreateMetadata(
        IEnumerable<Attribute> attributes, 
        Type containerType, 
        Func<object> modelAccessor, 
        Type modelType, 
        string propertyName
    )
    {
        var metadata = base.CreateMetadata(attributes, containerType, modelAccessor, modelType, propertyName);
        var engineer = attributes.OfType<EngineerAttribute>().FirstOrDefault();
        if (engineer != null)
        {
            metadata.AdditionalValues["IsFoo"] = engineer.IsFoo;
        }
        return metadata;
    }
}

您将在Application_Start注册以替换默认值:

ModelMetadataProviders.Current = new MyMetadataProvider();

现在,您可以使用ViewData.ModelMetadata.AdditionalValues["IsFoo"]以与之前显示的方式相同的方式访问模板中的元数据。显然你可以在AdditionalValues属性中放置一个任意复杂的对象,而不仅仅是布尔值。

您也可能会发现following article对元数据很有用。

答案 1 :(得分:1)

注意:下面是一种可行的方法,但使用IMetadataAware按照接受的答案中所述是一种更好的方法。如果可以的话,通常最好避免反思。

你只能通过反思来做到这一点。这是关于如何为方法属性执行此操作的good example

在属性EngineerAttribute上获取Engineer的值的代码示例:

PropertyInfo pi = Model.GetType().GetProperty("Engineer");
EngineerAttribute a =
    System.Attribute.GetCustomAttribute(pi, typeof(EngineerAttribute));

获取具有属性[Engineer(true)]的所有属性的代码示例:

var t = Model.GetType();
var engineerProperties =
    from p in t.GetProperties()
    let ca = System.Attribute.GetCustomAttribute(p, typeof(EngineerAttribute))
    where ca != null && ca.BooleanProperty == true
    select p;

当您拥有这些属性时,您可以使用EditorFor的重载来指定其他视图数据,然后您可以在子视图中使用这些数据:

Html.EditorFor(m => m.Engineer, new { IsEngineer = isEngineer });