ajax 和安全控制器

发布于 2024-09-11 08:28:44 字数 291 浏览 4 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

一百个冬季 2024-09-18 08:28:44

我认为这两个问题可以提供足够的信息来引导您走向正确的方向。

  1. Asp MVC [授权] 返回帖子的 Get
  2. 更多控制ASP.Net MVC的Authorize;保留 AJAX 请求 AJAXy

I think these two questions can provide enough info to set you in the right direction.

  1. Asp MVC [Authorize] to return a Post instead of a Get
  2. More control on ASP.Net MVC's Authorize; to keep AJAX requests AJAXy
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文