gpt4 book ai didi

c# - Web Api 未绑定(bind)到模型

转载 作者:行者123 更新时间:2023-12-02 22:17:55 24 4
gpt4 key购买 nike

我正在尝试将 JSON 对象发布到 Web Api URL,但它未绑定(bind)到模型。

这似乎是同一个问题:ASP.Net Web Api not binding model on POST

我尝试了他们所做的一切,但仍然无法正常工作。您可能注意到的一个区别是我没有使用 DataContract 属性,但我认为它们不是必需的,并且在我尝试它们时没有任何区别。

public class MyModel
{
public int Id { get; set; }
}

Public class MyController : ApiController
{
public int Save(MyModel myModel)
{
// myModel is always null
return 0;
}
}

Fiddler setup

最佳答案

您的 Controller 方法似乎缺少 [HttpPost] 属性。 在上述情况下,这实际上并不是严格要求的,也许这是仅在发布原语时需要?

另请注意,如果您使用 WebApi,我会使用更多基于 REST 的语法,例如在您的 Controller 上使用方法 Get、Post、Put 等,而不是命名方法

编辑:

您的帖子还有另一个非常微妙的问题。标题行不能以 ; 结尾,所以 Content-Type: application/json; charset=utf-8; 应该是 Content-Type: application/json; charset=utf-8

关于c# - Web Api 未绑定(bind)到模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14177314/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com