0

我创建了一个 DelegatingHandler,它适用于每个请求。我读过一些文章,我可以为特定路线定义处理程序,但我尝试了很多方法都没有成功,我错过了一些我没有找到的东西。

最后一次尝试是:

GlobalConfiguration.Configuration.Routes.MapHttpRoute(
    name: "SaveMessage",
    routeTemplate: "api/message/{type}",
    defaults: new { type = RouteParameter.Optional },
    constraints: null,
    handler: HttpClientFactory.CreatePipeline(
              new HttpControllerDispatcher(GlobalConfiguration.Configuration), 
              new DelegatingHandler[]{new ValidationHandler()})
);

我的类控制器和方法具有以下属性:

[RoutePrefix("api/message")]
public class MessageController : ApiController
{
    [Route("{type}")]
    [HttpPost]
    public HttpResponseMessage Save(string type, [FromBody] Message message)
    {
        ....
    }
}

我的处理程序缺少什么仅适用于api/message/text 之类的请求?

我已经阅读了诸如How to make more MapHttpRoutes for MVC 4 Apihttp://www.asp.net/web-api/overview/web-api-routing-and-actions/routing-and-action-selection之类的链接。

4

1 回答 1

0

问题是设置为空的约束。您应该像这样定义它以使其适用于 POST 或 GET:

constraints: new { httpMethod = new System.Web.Http.Routing.HttpMethodConstraint(HttpMethod.Post) }
于 2015-06-10T17:39:16.667 回答