此功能的關鍵字屬性在ASP.NET MVC路由。在博客中有很多信息可用。
通過Route
-Annotation,您可以修飾您的動作併爲動作調用定義URL部件和參數之間的映射。
public class ExampleController : Controller
{
[Route("r/{subreddit}/{topic}")]
public ActionResult Topic(string subreddit, string topic)
{
//Logic goes here
}
}
而且屬性路由已在RouteConfig.cs
將activted與routes.MapMvcAttributeRoutes();
像
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapMvcAttributeRoutes();
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
}
然後你就可以http://localhost:PORT/r/reddit/topic
調用ExampleController
的Topic
清議。
爲其創建路線定義。 –