我应该将RouteParameter或UrlParameter用于Asp.NET web-api路由吗?

时间:2012-07-26 12:05:57

标签: c# routes asp.net-mvc-routing asp.net-mvc-4

我已经看到两者都被使用了,所以我想知道,他们做同样的事情还是不同的事情?如果是后者,有什么区别?

我尝试通过浏览视觉工作室MVC 4(rc)web api模板来尝试回答它,但遗憾的是它使用了两者,所以我的困惑仍然存在。这是模板包含的内容:

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

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

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

1 个答案:

答案 0 :(得分:16)

对于标准MVC控制器路由(RouteParameter),使用.MapHttpRoute表示Web Api路由(UrlParameter)和.MapRoute。如您所知,标准MVC和Web API在程序集和命名空间方面是2个完全不同的API,即使两者非常相似。例如,您可以在控制台应用程序中自托管您的Web API,因此您甚至不会引用System.Web.Mvc程序集,在这种情况下您当然会使用RouteParameter