8

我一直在使用 MVC4 测试版,目前正在努力升级到最近发布的 RC 版本。

似乎模型绑定复杂请求类型已经改变,但我无法弄清楚我做错了什么/做错了什么。

例如,假设我有以下 API 控制器:

public class HomeApiController : ApiController
{
    public TestModel Get()
    {
        return new TestModel
        {
            Id = int.MaxValue,
            Description = "TestDescription",
            Time = DateTime.Now
        };
    }
}

这产生了预期的结果:

<TestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/xxxx">
    <Description>TestDescription</Description>
    <Id>2147483647</Id>
    <Time>2012-06-07T10:30:01.459147-04:00</Time>
</TestModel>

现在说我只是更改签名,接受请求类型,如下所示:

public TestModel Get(TestRequestModel request)
{
    ...

public class TestRequestModel
{
    public int? SomeParameter { get; set; }
}

我现在收到以下错误:

<Exception xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/System.Web.Http.Dispatcher">
    <ExceptionType>System.InvalidOperationException</ExceptionType>
    <Message>
        No MediaTypeFormatter is available to read an object of type 'TestRequestModel' from content with media type ''undefined''.
    </Message>
    <StackTrace>
    at System.Net.Http.HttpContentExtensions.ReadAsAsync[T](HttpContent content, Type type, IEnumerable`1 formatters, IFormatterLogger formatterLogger) at System.Net.Http.HttpContentExtensions.ReadAsAsync(HttpContent content, Type type, IEnumerable`1 formatters, IFormatterLogger formatterLogger) at System.Web.Http.ModelBinding.FormatterParameterBinding.ExecuteBindingAsync(ModelMetadataProvider metadataProvider, HttpActionContext actionContext, CancellationToken cancellationToken) at System.Web.Http.Controllers.HttpActionBinding.<>c__DisplayClass1.<ExecuteBindingAsync>b__0(HttpParameterBinding parameterBinder) at System.Linq.Enumerable.WhereSelectArrayIterator`2.MoveNext() at System.Threading.Tasks.TaskHelpers.IterateImpl(IEnumerator`1 enumerator, CancellationToken cancellationToken)
    </StackTrace>
</Exception>

我查看了在 中引发此异常的源代码HttpContentExtensions,但它看起来像是检查内容标题(我应该有),如果没有,它会尝试从MediaTypeFormatter集合中获取格式化程序它具有特定类型(它不能)然后抛出。

还有其他人经历过吗?我缺少一些全球注册?

4

2 回答 2

13

我看到您的原始问题已得到回答,但要回答另一个问题,模型绑定在 RC 中有所改变。

http://weblogs.thinktecture.com/cweyer/2012/06/aspnet-web-api-changes-from-beta-to-rc.html

这个链接有一些关于它的细节。但总结一下似乎影响您的更改,模型绑定从请求的主体或 uri 中提取其值。对于以前的版本也是如此,但是对于候选版本,MVC4 默认情况下会在 body 中查找复杂类型,并在 uri 中查找值类型。

因此,如果您提交的请求中包含“SomeParameter”键的正文,您应该会看到它已绑定。或者,如果您将声明更改为:

 public TestModel Get(int? someParameter)
 {

 }

值得庆幸的是,团队预见到了这方面的潜在问题,并为我们留下了可以用来覆盖此行为的属性。

 public TestModel Get([FromUri]TestRequestModel request)
 {

 }

这里的关键是[FromUri]告诉模型绑定器在 uri 中查找值。[FromBody]如果您想在请求的正文中放置一个值类型,也可以这样做。

于 2012-06-08T12:16:20.397 回答
2

我们看到了同样的事情。在我们的例子中,问题是一个复杂的对象被传递到一个 get 方法中。我们需要在该方法的参数中添加一个 [FromUri] 属性。

http://forums.asp.net/t/1809925.aspx/1?GET+requests+with+complex+object+as+input+parameter

public class SearchController : ApiController
{
    // added [FromUri] in beta to RC transition otherwise media type formatter error
    public IQueryable<SearchResultEventModel> Get( [FromUri]SearchSpecModel search )
    {
        // ...
    }
}
于 2012-06-07T20:18:40.113 回答