gpt4 book ai didi

c# - 在 WebApi 中支持 GET * 和 * POST

转载 作者:太空狗 更新时间:2023-10-29 17:50:47 33 4
gpt4 key购买 nike

让我们有一个测试模型。

public class TestRequestModel
{
public string Text { get; set; }
public int Number { get; set; }
}

我希望此服务能够接受以下请求:

  • GET/test?Number=1234&Text=MyText
  • POST/test header :Content-Type:application/x-www-form-urlencoded 和正文:Number=1234&Text=MyText
  • POST/test header :Content-Type:application/json 和正文:{"Text":"Provided!","Number": 9876}

路由配置如下:

_config.Routes.MapHttpRoute(
"DefaultPost", "/{controller}/{action}",
new { action = "Post" },
new { httpMethod = new HttpMethodConstraint(HttpMethod.Post) });

_config.Routes.MapHttpRoute(
"The rest", "/{controller}/{action}",
defaults: new { action = "Get" });

我的 Controller 看起来像这样:

public class TestController : ApiController
{
[HttpGet]
public TestResponseModel Get([FromUri] TestRequestModel model)
{
return Do(model);
}

[HttpPost]
public TestResponseModel Post([FromBody] TestRequestModel model)
{
return Do(model);
}
(...)

这似乎是可以接受的样板代码数量,但我仍然希望尽可能避免使用它。

拥有额外的路线也不理想。我害怕 MVC/WebAPI 路由,我相信它们是邪恶的。

有没有办法避免使用两种方法和/或 DefaultPost 路由?

最佳答案

您要求的不是典型的 ASP.NET Web API。在 ASP.NET MVC 中,通常使用相同的操作方法处理初始 GET 和后续回发 (POST)。 ASP.NET Web API 旨在构建 HTTP 服务,GET 用于在不更改系统中的任何内容的情况下检索资源,而 POST 用于创建新资源,如 Matthew 所指出的。

无论如何,Web API 中有一个操作方法来完成此操作并非不可能。但是您希望相同的操作方法不仅处理 GET 和 POST,还执行模型绑定(bind)和格式化程序绑定(bind)。模型绑定(bind)(类似于 MVC)将请求 URI、查询字符串等绑定(bind)到参数,而格式化程序绑定(bind)(Web API 独有)将主体内容绑定(bind)到参数。默认情况下,简单类型从 URI 绑定(bind),查询字符串和复杂类型从正文绑定(bind)。所以,如果你有一个参数为 string text, int number, TestRequestModel model 的 action 方法,你可以从 URI 或 body 绑定(bind) web API,在这种情况下,你需要检查什么不是清空并使用它。但是,不幸的是,这样的解决方案看起来更像是黑客。或者,如果您希望从 URI/查询字符串和正文中填充相同的复杂类型,您将需要编写自己的参数绑定(bind)器来检查请求部分并相应地填充参数。

此外,您不需要有两个路由映射。像这样的默认值就可以了。

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

关于c# - 在 WebApi 中支持 GET * 和 * POST,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18050689/

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