我在网站上使用Route Constraint,现在我需要使用属性路由。
路线约束类:
public class BusConstraint : IRouteConstraint
{
private RouteDB routeDb = new RouteDB();
public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection)
{
if (values[parameterName] != null)
{
var permalink = values[parameterName].ToString();
try
{
List<AdakDbConnect.RouteTable> routeTables;
if (HttpContext.Current.Cache["RouteTables"] == null)
{
routeTables = routeDb.GetRouteTables(AdakDbDll.Username, AdakDbDll.Password);
HttpContext.Current.Cache.Add("RouteTables", routeTables, null, DateTime.Now.AddMinutes(45), TimeSpan.Zero, CacheItemPriority.Normal, null);
}
else
{
routeTables = HttpContext.Current.Cache["RouteTables"] as List<AdakDbConnect.RouteTable>;
}
RouteTable Route = routeTables?.FirstOrDefault(p => p.Link == permalink && p.Controlller == "Bus");
if (Route != null)
{
return true;
}
}
catch (System.Exception)
{
}
return false;
}
return false;
}
}
对于属性路由,请使用上面的代码执行操作:
[Route("Bus")]
[Route("Bus/index")]
[Route("Bus/{From:int}/{To:int}/{Date:int}/{IsForeign:int:range(0,1)}/{Title}")]
一旦属性路由和路由约束目前单独工作。但是当我一起使用时,例如属性路由工作只有路径约束不起作用。
RouteConfig:
public static void RegisterRoutes(RouteCollection routes)
{
routes.MapMvcAttributeRoutes();
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
//---------------------BusRoute---------------------------
routes.MapRoute(
name: "BusRoute",
url: "{*permalink}",
defaults: new { controller = "Bus", action = "Index" },
constraints: new { permalink = new BusConstraint() },
namespaces: new[] { "TravelEnterProject.Controllers" }
);
}
如何一起使用路由约束和属性路由?
答案 0 :(得分:0)
路由将按顺序在RouteConfig文件中定义。
根据您的RouteConfig.cs文件
你定义了routes.MapMvcAttributeRoutes(); - &GT;用于属性路由 然后你定义了传统路由。
因此,如果您在控制器中同时使用了路由,那么只有属性路由才能正常工作。
如果您想按照传统路由工作,请更改def。
的顺序首先定义传统的路由路由.MapRoute() 然后routes.MapMvcAttributeRoutes();