ASP.NET WebAPI自定义路由未被命中,返回404

时间:2018-02-19 19:43:12

标签: c# asp.net asp.net-web-api2 asp.net-web-api-routing

我已为控制器中的方法设置此自定义路由:

[HttpPost, Route("imagconv/{format1}/to/{format2}")]
public HttpResponseMessage imagconv( [FromUri] string format1, [FromUri] string format2)

控制器上的路线是:

[RoutePrefix("convert")]
public class DocumentConvertController : ApiController

我试图用这个例子在Postman中调用它:

http:// ...server... /convert/imageconv/psd/to/png

而不是得到结果,我得到404错误。

以下是我的RouteConfig中的内容:

    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        );
    }

有谁知道为什么这不起作用?这似乎很简单。提前谢谢!

1 个答案:

答案 0 :(得分:0)

这是路线定义中的一个错字,它错过了一个" e"。