ASP.NET MVC 2 如何在执行操作之前检查用户的权限?

发布于 2024-10-08 14:48:41 字数 155 浏览 1 评论 0原文

我有一个控制器,要调用其所有操作,用户必须拥有执行此操作的权限。问题是如何在执行操作之前检查这一点? 如果用户没有权限,我想渲染一个带有错误消息的视图。我尝试使用重写的 OnActionExecuting 方法,但我无法从中返回视图方法

I have a controller, and to invoke all its actions the user has to have privilages to do that. The question is how to check that before action is executed? If the user doesn't have permissions I want to render a View with error message. I tried to use overriden OnActionExecuting method, but I can't return a View from that method

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

匿名的好友 2024-10-15 14:48:41

我尝试使用重写的 OnActionExecuting 方法,但无法从该方法返回视图

事实上,您可以:

public override void OnActionExecuting(ActionExecutingContext filterContext)
{
    bool userHasPermissions = CheckUserPermissionsFromSomewhere(filterContext);
    if (!userHasPermissions)
    {
        filterContext.Result = new ViewResult
        {
            // you can also specify master page and view model
            ViewName = "Forbidden"
        };
    }
    else
    {
        base.OnActionExecuting(filterContext);
    }
}

I tried to use overriden OnActionExecuting method, but I can't return a View from that method

As a matter of fact you can:

public override void OnActionExecuting(ActionExecutingContext filterContext)
{
    bool userHasPermissions = CheckUserPermissionsFromSomewhere(filterContext);
    if (!userHasPermissions)
    {
        filterContext.Result = new ViewResult
        {
            // you can also specify master page and view model
            ViewName = "Forbidden"
        };
    }
    else
    {
        base.OnActionExecuting(filterContext);
    }
}
姜生凉生 2024-10-15 14:48:41

在类 Controller 中,此方法受到保护。

In the class Controller this method is protected.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文