asp.net-mvc-3 – 在ASP.NET MVC3中的自定义授权属性中使用操作参数

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-3 – 在ASP.NET MVC3中的自定义授权属性中使用操作参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个控制器,只能在加载特定参数时才请求授权。就像参数ID为8时一样。

我想出了使用这样的自定义验证属性

public class MyAuthorizeAttribute : AuthorizeAttribute
{
    protected override bool AuthorizeCore(HttpContextBase httpContext)
    {
        if (/* Action's inputparameter ID = 8 */)
        {
        return base.AuthorizeCore(httpContext);
        }
        return true;
    }
}

我的行动看起来像这样(不是很有趣)

[MyAuthorize]
public ActionResult Protected(int id)
{
    /* custom logic for setting the viewmodel from the id parameter */
    return View(viewmodel);
}

问题是您可以看到我不知道如何在authorize属性中检查该ID参数。
你可以帮我一个解决方案吗?

解决方法

如果id作为请求参数(GET或POST)或路由数据参数传递:
protected override bool AuthorizeCore(HttpContextBase httpContext)
{
    // first look at routedata then at request parameter:
    var id = (httpContext.Request.RequestContext.RouteData.Values["id"] as string) 
             ??
             (httpContext.Request["id"] as string);
    if (id == "8")
    {
        return base.AuthorizeCore(httpContext);
    }
    return true;
}
原文链接:https://www.f2er.com/aspnet/253109.html

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