ASP.NET MVC JsonResult 和 AuthorizeAttribute
一起使用 AuthorizeAttribute
和 JsonResult
以便当用户未经授权时应用程序返回 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从您的操作中删除
AuthorizeAttribute
。然后在操作的第一行中插入以下内容:
或返回您想要的任何消息。
Remove the
AuthorizeAttribute
from your Action.Then in the first lines of your action, insert this:
or return whatever message you want.