ajax 和安全控制器
我正在使用 jQuery Ajax 来发布,当成功获取数据并替换一些效果良好的项目时,如果我向控制器添加一些安全性,就像这样,
[Authorize]
public ActionResult .........
如果用户登录一切正常,但当用户未登录或未授权时,它应该被重定向到登录页面
由于我使用的是 Ajax 并且它不是普通的帖子,用户不会重定向到登录窗口? 我可以做什么来解决这个问题? 或者我如何知道用户在使用 java 发布之前未获得授权以显示警报以告诉用户登录或角色不匹配?
I'm using jQuery Ajax to post and when success get the data and replace some items that works well if I add some security to the controller like that
[Authorize]
public ActionResult .........
If the user logged in everything go OK but when the user not logged or not authorized it should be redirected to the login page
As I'm using Ajax and it not ordinary post the user will not redirect to log in a window?
What can I do to solve this problem?
Or how can I know that the user isn't authorized before post with java to display an alert to tell the user to log in or the role didn't match?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这两个问题可以提供足够的信息来引导您走向正确的方向。
I think these two questions can provide enough info to set you in the right direction.