18

升级到 MVC 3 RTM 后,我遇到了以前工作的异常。

这是场景。我有几个使用相同底层接口 IActivity 和 Iowned 的对象。

IActivity implements IOwned (another interface)

public interface IActivity:IOwned {...}

public interface IOwned 
{
    int? AuthorId {get;set;}
}

我有一个部分视图,它使用 IActivity 从其他具体部分重用。

这是活动部分的定义。

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IActivity>" %>
<%: Html.HiddenFor(item => item.AuthorId) %>

但是,它会引发异常。在 ModelMetadata 中找不到 AuthorId。

我猜在以前的版本中,它查看了 IActivity 实现的接口。

有什么想法、建议,除了在各处复制类似的界面吗?

复制下面的堆栈跟踪。

[ArgumentException: The property IActivity.AuthorId could not be found.]
   System.Web.Mvc.AssociatedMetadataProvider.GetMetadataForProperty(Func`1 modelAccessor, Type containerType, String propertyName) +498313
   System.Web.Mvc.ModelMetadata.GetMetadataFromProvider(Func`1 modelAccessor, Type modelType, String propertyName, Type containerType) +101
   System.Web.Mvc.ModelMetadata.FromLambdaExpression(Expression`1 expression, ViewDataDictionary`1 viewData) +393
   System.Web.Mvc.Html.InputExtensions.HiddenFor(HtmlHelper`1 htmlHelper, Expression`1 expression, IDictionary`2 htmlAttributes) +57
   System.Web.Mvc.Html.InputExtensions.HiddenFor(HtmlHelper`1 htmlHelper, Expression`1 expression) +51
   ASP.views_shared_activity_ascx.__Render__control1(HtmlTextWriter __w, Control parameterContainer) in c:\Users\...\Documents\Visual Studio 2010\Projects\ngen\trunk\...\Views\Shared\Activity.ascx:3
   System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +109
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +8
   System.Web.UI.Control.Render(HtmlTextWriter writer) +10
   System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +27
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +100
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +25
   System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +208
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +8
   System.Web.UI.Page.Render(HtmlTextWriter writer) +29
   System.Web.Mvc.ViewPage.Render(HtmlTextWriter writer) +43
   System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +27
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +100
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +25
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3060
4

6 回答 6

15

来自 MVC 团队:

不幸的是,代码实际上利用了一个已修复的错误,其中用于 ModelMetadata 目的的表达式容器被无意​​设置为声明类型而不是包含类型。由于需要虚拟属性和验证/模型元数据,因此必须修复此错误。

我们不鼓励使用基于接口的模型(考虑到错误修复所施加的限制,我们也不可以实际支持)。切换到抽象基类可以解决这个问题。

于 2011-03-30T19:53:04.737 回答
14

ASP.NET MVC 3 中的方法中有一个重大更改/错误,System.Web.Mvc.ModelMetadata. FromLambdaExpression它解释了您遇到的异常:

ASP.NET MVC 2.0:

...
case ExpressionType.MemberAccess:
{
    MemberExpression body = (MemberExpression) expression.Body;
    propertyName = (body.Member is PropertyInfo) ? body.Member.Name : null;
    containerType = body.Member.DeclaringType;
    flag = true;
    break;
}
...

ASP.NET MVC 3.0

...
case ExpressionType.MemberAccess:
{
    MemberExpression body = (MemberExpression) expression.Body;
    propertyName = (body.Member is PropertyInfo) ? body.Member.Name : null;
    containerType = body.Expression.Type;
    flag = true;
    break;
}
...

请注意如何为containerType变量分配不同的值。因此,在您的情况下,在 ASP.NET MVC 2.0 中,它被分配的值IOwned是属性的正确声明类型,AuthorId而在 ASP.NET MVC 3.0 中,它被分配给IActivity,后来当框架试图找到它崩溃的属性时。

这就是原因。就决议而言,我会等待微软的一些官方声明。我在发行说明文档中找不到任何相关信息。这是一个需要在这里解决的错误或某些功能吗?

现在您可以使用非强类型Html.Hidden("AuthorId")帮助器或指定IOwned为您的控件的类型(我知道两者都很糟糕)。

于 2011-01-15T23:28:32.750 回答
7

感谢 Burcephal,他的回答为我指明了正确的方向

您可以创建一个 MetaDataProvider 来解决此问题,此处的代码添加到基类中的代码中,检查模型的已实现接口上的属性,该模型本身就是一个接口。

public class MyMetadataProvider
    : EmptyModelMetadataProvider {

    public override ModelMetadata GetMetadataForProperty(
        Func<object> modelAccessor, Type containerType, string propertyName) {

        if (containerType == null) {
            throw new ArgumentNullException("containerType");
        }
        if (String.IsNullOrEmpty(propertyName)) {
            throw new ArgumentException(
                "The property &apos;{0}&apos; cannot be null or empty", "propertyName");
        }

        var property = GetTypeDescriptor(containerType)
            .GetProperties().Find(propertyName, true);
        if (property == null
            && containerType.IsInterface) {
            property = (from t in containerType.GetInterfaces()
                        let p = GetTypeDescriptor(t).GetProperties()
                            .Find(propertyName, true)
                        where p != null
                        select p
                        ).FirstOrDefault();
        }

        if (property == null) {
            throw new ArgumentException(
                String.Format(
                    CultureInfo.CurrentCulture,
                    "The property {0}.{1} could not be found",
                    containerType.FullName, propertyName));
        }

        return GetMetadataForProperty(modelAccessor, containerType, property);
    }
}

如上所述,将您的提供者设置为 global.asax Application_Start

ModelMetadataProviders.Current = new MyMetaDataProvider();
于 2011-10-19T19:21:56.910 回答
6

如果您有兴趣,我已经在我的应用程序中实现了一些解决方法。当我浏览 MVC 源代码时,我发现下面命名的 FromLambdaExpression 方法将调用 MetaDataProvider,它是一个可覆盖的单例。所以我们可以只实现那个类,如果第一个接口不起作用,它实际上会尝试继承的接口。它还将上升到接口树。

public class MyMetaDataProvider : EmptyModelMetadataProvider
{
    public override ModelMetadata GetMetadataForProperty(Func<object> modelAccessor, Type containerType, string propertyName)
    {
        try
        {
            return base.GetMetadataForProperty(modelAccessor, containerType, propertyName);
        }
         catch(Exception ex)
        {
            //Try to go up to type tree
            var types = containerType.GetInterfaces();              
            foreach (var container in types)
            {
                if (container.GetProperty(propertyName) != null)
                {
                    try
                    {
                        return GetMetadataForProperty(modelAccessor, container, propertyName);
                    }
                    catch
                    {
                        //This interface did not work
                    }
                }
            }               
            //If nothing works, then throw the exception
            throw ex;
        }              
    }
}

然后,只需在 global.asax Application_Start() 中执行 MetaDataProvider

ModelMetadataProviders.Current = new MyMetaDataProvider();

它不是有史以来最好的代码,但它可以完成工作。

于 2011-09-06T18:21:19.117 回答
5

尝试使用类型转换。它适用于我的项目,尽管 resharper 强调它是多余的。

对于您的代码,解决方案是

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IActivity>" %>
<%: Html.HiddenFor(item => ((IOwned)item).AuthorId) %>
于 2011-03-21T07:56:51.720 回答
0

进一步Anthony Johnston 的回答,您可能会发现在使用 DataAnnotations 时出现异常,因为AssociatedValidatorProvider.GetValidatorsForProperty()方法将尝试使用继承接口作为容器类型而不是基础类型,因此无法再次找到该属性。

这是来自 GetValidatorsForProperty 方法的反映代码(它是导致 propertyDescriptor 变量为 null 并因此引发异常的第二行):

private IEnumerable<ModelValidator> GetValidatorsForProperty(ModelMetadata metadata, ControllerContext context)
{
    ICustomTypeDescriptor typeDescriptor = this.GetTypeDescriptor(metadata.ContainerType);
    PropertyDescriptor propertyDescriptor = typeDescriptor.GetProperties().Find(metadata.PropertyName, true);
    if (propertyDescriptor != null)
    {
        return this.GetValidators(metadata, context, propertyDescriptor.Attributes.OfType<Attribute>());
    }
    else
    {
        object[] fullName = new object[] { metadata.ContainerType.FullName, metadata.PropertyName };
        throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, MvcResources.Common_PropertyNotFound, fullName), "metadata");
    }
}

如果是这样,我相信以下代码可能会有所帮助,因为它确保将 ContainerType 设置为属性所在的类型,而不是视图模型的类型。

免责声明:它似乎工作正常,但我还没有完全测试它,所以它可能会产生不良影响!我也明白它写得并不完美,但为了便于比较,我试图保持与之前的答案相似的格式。:)

public class MyMetadataProvider : DataAnnotationsModelMetadataProvider
{
    public override ModelMetadata GetMetadataForProperty(
        Func<object> modelAccessor, Type containerType, string propertyName)
    {

        if (containerType == null)
        {
            throw new ArgumentNullException("containerType");
        }
        if (String.IsNullOrEmpty(propertyName))
        {
            throw new ArgumentException(
                "The property &apos;{0}&apos; cannot be null or empty", "propertyName");
        }

        var containerTypeToUse = containerType;

        var property = GetTypeDescriptor(containerType)
            .GetProperties().Find(propertyName, true);
        if (property == null
            && containerType.IsInterface)
        {

            var foundProperty = (from t in containerType.GetInterfaces()
                        let p = GetTypeDescriptor(t).GetProperties()
                            .Find(propertyName, true)
                        where p != null
                        select (new Tuple<System.ComponentModel.PropertyDescriptor, Type>(p, t))
                        ).FirstOrDefault();

            if (foundProperty != null)
            {
                property = foundProperty.Item1;
                containerTypeToUse = foundProperty.Item2;
            }
        }


        if (property == null)
        {
            throw new ArgumentException(
                String.Format(
                    CultureInfo.CurrentCulture,
                    "The property {0}.{1} could not be found",
                    containerType.FullName, propertyName));
        }

        return GetMetadataForProperty(modelAccessor, containerTypeToUse, property);
    }
}
于 2013-04-04T09:02:53.770 回答