How to make IRouteConstraint filter route

筅森魡賤 提交于 2019-12-18 02:18:05

问题


I wrote a custom route constraint, but its filter just doesn't get recognized. Does anyone have an example working use of IRouteConstraint ?

Also, note to developers: I get double display of the form on my android. Something must be wrong with the partial rendering?


回答1:


Here's a simple constraint that looks up an article slug in a fictional repository:

public class SlugRouteConstraint : IRouteConstraint
{
    private readonly ISlugRepository slugRepository = new SlugRepository();

    public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection)
    {
        if (!values.ContainsKey(parameterName))
            return false;

        var slug = (string)values[parameterName];

        return slugRepository.Exists(slug);
    }
}

You could wire up the constraint like this:

routes.MapRoute("Slugs", "{slug}",
    new { controller = "Articles", action = "View" },
    new { slug = new SlugConstraint() });


来源:https://stackoverflow.com/questions/4988138/how-to-make-irouteconstraint-filter-route

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!