ASP.NET MVC JsonResult 和 AuthorizeAttribute

发布于 2024-10-14 20:48:10 字数 190 浏览 0 评论 0原文

一起使用 AuthorizeAttributeJsonResult 以便当用户未经授权时应用程序返回 Json 错误而不是登录页面的最直接方法是什么?

我目前正在考虑的两件事是扩展 AuthorizeAttribute 或只是创建一个实现 IAuthorizationFilter 的新属性。

What is the most straight forward way to use AuthorizeAttribute and JsonResult together so that when the user is not authorized the application returns a Json error rather than a log in page?

The two things I am currently considering are extending AuthorizeAttribute or just making a new attribute that implements IAuthorizationFilter.

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

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

发布评论

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

评论(1

坚持沉默 2024-10-21 20:48:10

从您的操作中删除 AuthorizeAttribute

然后在操作的第一行中插入以下内容:

if (!User.Identity.IsAuthenticated)
    return Json("Need to login");

或返回您想要的任何消息。

Remove the AuthorizeAttribute from your Action.

Then in the first lines of your action, insert this:

if (!User.Identity.IsAuthenticated)
    return Json("Need to login");

or return whatever message you want.

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