gpt4 book ai didi

asp.net-mvc-4 - 从 ASP.NET MVC Web API 返回 400 而不是 404

转载 作者:行者123 更新时间:2023-12-04 16:47:38 24 4
gpt4 key购买 nike

我已经使用 VS2012 创建了 ASP.NET MVC Web API 项目的 hello world:

public class ValuesController : ApiController
{
// GET api/values
public IEnumerable<string> Get()
{
return new string[] { "value1", "value2" };
}

// GET api/values/5
public string Get(int id)
{
return "value";
}
}

向该 Controller 发出 get 请求会返回一些状态为 200 的数据的 XML。到目前为止一切都很好。

当我删除该方法时,如下所示:
public class ValuesController : ApiController
{
// GET api/values
//public IEnumerable<string> Get()
//{
// return new string[] { "value1", "value2" };
//}

// GET api/values/5
public string Get(int id)
{
return "value";
}
}

然后我得到一个 404 未找到。我想要的是一个 400 错误的请求,因为必须提供一个 ID。我怎样才能做到这一点?

最佳答案

您不需要保留 Get()方法只是抛出错误。
将 Get by ID 方法的签名更改为:

public string Get(int? id = null)
{
if (id == null) throw new HttpResponseException(HttpStatusCode.BadRequest);
return "value";
}

关于asp.net-mvc-4 - 从 ASP.NET MVC Web API 返回 400 而不是 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14188827/

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