让我们有一个测试模型。
public class TestRequestModel
{
public string Text { get; set; }
public int Number { get; set; }
}
我希望这项服务能够接受以下请求:
- GET /test?Number=1234&Text=MyText
- POST /test带有标题:Content-Type:application/x-www-form-urlencoded和正文:Number=1234&Text=MyText
- POST /test带有标题: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" });
我的控制器如下所示:
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路由?