ASP.NET MVC Controller parameter processing

2019-05-22 13:41发布

In my application I have a string parameter called "shop" that is required in all controllers, but it needs to be transformed using code like this:

        shop = shop.Replace("-", " ").ToLower();

How can I do this globally for all controllers without repeating this line in over and over? Thanks, Leo

1条回答
祖国的老花朵
2楼-- · 2019-05-22 14:28

Write a custom action filter, override OnActionExecuting() and apply the filter to all your controllers. (Or simply overriding OnActionExecuting() in your base controller, if you have a base controller at all.) The action method would look something like this:

protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
    var parameters = filterContext.ActionParameters;
    object shop;
    if (parameters.TryGetValue("shop", out shop))
    {
        parameters["shop"] = ((string)shop).Replace("-", " ").ToLower();
    }
}
查看更多
登录 后发表回答