asp.net-mvc – 将动作方法参数传递给asp.net mvc中的ActionFilterAttribute

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 将动作方法参数传递给asp.net mvc中的ActionFilterAttribute前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道我可以使用filterContext来获取它。但是,如果action方法参数的名称不同,则这不是很灵活。这应该工作:
[HttpGet]
[NewAuthoriseAttribute(SomeId = id)]
public ActionResult Index(int id)
{
    ...

public class NewActionFilterAttribute : ActionFilterAttribute
{   
    public int SomeId { get; set; }
    ...

但它并不(甚至不编译)。有任何想法吗?

解决方法

建立在@Pankaj的答案和@csetzkorn的评论

将参数的名称作为字符串传递,然后检查filterContext

public class NewAuthoriseAttribute : ActionFilterAttribute
{
    public string IdParamName { get; set; }

    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        if (filterContext.ActionParameters.ContainsKey(IdParamName))
        {
            var id = filterContext.ActionParameters[IdParamName] as Int32?;
        }
    }
}

[NewAuthorizeAttribute(IdParamName = "fooId")]
public ActionResult Index(int fooId)
{ ... }
原文链接:https://www.f2er.com/aspnet/253294.html

猜你在找的asp.Net相关文章