我有一个托管的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?
答案 0 :(得分:5)
您收到404的原因是因为框架没有根据您的请求找到执行方法。默认情况下,Web API使用以下规则绑定方法中的参数:
根据这些规则,如果要从POST主体绑定参数,只需在类型前面添加[FromBody]
属性:
[HttpPost]
public List<ItemInLocationModel> GetInventoryByLocationIDAndCode([FromBody] int id, string code) {
...
}
了解更多信息please see the documentation。