将JSON HttpContent发布到ASP.NET Web API

时间:2014-06-08 18:09:18

标签: c# asp.net-web-api httpclient httpcontent

我有一个托管的ASP.NET Web API,可以正常访问http get请求,我现在需要将一些参数传递给PostAsync请求,如下所示:

var param = Newtonsoft.Json.JsonConvert.SerializeObject(new { id=_id, code = _code });
HttpContent contentPost = new StringContent(param, Encoding.UTF8, "application/json");

var response = client.PostAsync(string.Format("api/inventory/getinventorybylocationidandcode"), contentPost).Result;

此调用返回404 Not Found结果。

服务器端API动作如下所示:

[HttpPost]
public List<ItemInLocationModel> GetInventoryByLocationIDAndCode(int id, string code) {
...
}

只是为了确认我在Web API上的路线如下所示:

config.Routes.MapHttpRoute(
            name: "DefaultApiWithAction",
            routeTemplate: "api/{controller}/{action}/{id}",
            defaults: new { id = RouteParameter.Optional }
);

我假设我正在错误地传递JSON HttpContent,为什么这会返回状态404?

1 个答案:

答案 0 :(得分:5)

您收到404的原因是因为框架没有根据您的请求找到执行方法。默认情况下,Web API使用以下规则绑定方法中的参数:

  • 如果参数是“简单”类型,Web API会尝试从URI获取值。简单类型包括.NET基元类型(int,bool,double等),以及TimeSpan,DateTime,Guid,decimal和string,以及具有可以从字符串转换的类型转换器的任何类型。 (稍后将详细介绍类型转换器。)
  • 对于复杂类型,Web API尝试使用media-type formatter从邮件正文中读取值。

根据这些规则,如果要从POST主体绑定参数,只需在类型前面添加[FromBody]属性:

[HttpPost]
public List<ItemInLocationModel> GetInventoryByLocationIDAndCode([FromBody] int id, string code) {
...
}

了解更多信息please see the documentation