Passing custom parameter in custom attribute - ASP.NET MVC

帅比萌擦擦* 提交于 2019-12-18 13:35:56

问题


My goal is to create a custom attribute like System.ComponentModel.DataAnnotations.Display wich allows me to pass a parameter.

Ex.: In System.ComponentModel.DataAnnotations.Display I can pass a value to the parameter Name

[Display(Name = "PropertyName")]
public int Property { get; set; }

I want to do the same but in controllers and actions like below

[CustomDisplay(Name = "Controller name")]
public class HomeController : Controller

and then fill a ViewBag or ViewData item with its value.

Can someone help me with this?

Thanks.


回答1:


This is very simple

public class ControllerDisplayNameAttribute : ActionFilterAttribute
{
    public string Name { get; set; }

    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        string name = Name;
        if (string.IsNullOrEmpty(name))
            name = filterContext.Controller.GetType().Name;

        filterContext.Controller.ViewData["ControllerDisplayName"] = Name;
        base.OnActionExecuting(filterContext);
    }
}

Then you can use it in your controller as below

[ControllerDisplayName(Name ="My Account Contolller"])
public class AccountController : Controller
{
}

And in your view you can automatically use it with @ViewData["ControllerDisplayName"]



来源:https://stackoverflow.com/questions/39770432/passing-custom-parameter-in-custom-attribute-asp-net-mvc

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