更改 AuthorizeAttribute 过滤器中的操作

发布于 2024-12-08 18:39:38 字数 276 浏览 1 评论 0原文

如果用户无权执行某个操作,在 HandleUnauthorizedRequest 中,我会将用户重定向到错误操作。这会导致 302 错误。

例如,从/Home/Index,用户将被带到/Error/Unauthorized

如何更改 filterContext.Response 中的 ActionResult 而不是重定向,以便用户在没有重定向的情况下看到未经授权的页面?

If a user is not authorized to execute an action, in HandleUnauthorizedRequest, I redirect the user to the error action. This results in a 302 error.

For example from /Home/Index, the user would be taken to /Error/Unauthorized.

Instead of the redirect, how do I change the ActionResult in the filterContext.Response so that the user sees the unauthorized page without a redirect?

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

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

发布评论

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

评论(1

聽兲甴掵 2024-12-15 18:39:38
filterContext.Response = new ViewResult
{
    ViewName = "~/Views/Error/Unauthorized.cshtml"
};
filterContext.Response = new ViewResult
{
    ViewName = "~/Views/Error/Unauthorized.cshtml"
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文