Rails - 捕获“无效的真实性令牌”例外

发布于 2024-08-16 12:57:05 字数 256 浏览 9 评论 0原文

我目前正在我的 Rails 应用程序上使用 RESTful 身份验证插件。

有一个典型的场景,当用户在登录屏幕停留足够的时间(假设 1 天..),导致身份验证令牌由于时间过期而无效。

当该用户第二天尝试登录时(他没有刷新,他仍然使用这个无效的令牌),他将收到“500”http 错误。使应用程序因该请求而崩溃。

我想知道是否有可能抓住这种期望并警告用户。像任何其他无辜的网络用户一样,他只是返回并再次尝试......然后再次遇到相同的错误......

I'm currently using RESTful Authentication plug-in on my rails application.

There is a typical scenario when a user stays at login screen for enough time (let's say 1 day..) that makes the authentication token invalid due to time expire.

When this user tries the next day to login (he didn't refresh, he is still with this invalid token), he will get an "500" http error. Making the application crash for that request.

I'm wondering if it's possible to catch this expection and warn the user. Like any other innocent web user he just does back and tries again.. and again gets the same error...

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

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

发布评论

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

评论(2

紫瑟鸿黎 2024-08-23 12:57:05

在您的 application_controller.rb 中,您将执行以下操作:

rescue_from Your::Exception, :with => :show_some_error_page

这将让您显示一些操作,在本例中是当发生未处理的异常时的 show_some_error_page

我希望这有帮助。

In your application_controller.rb you'll do something like:

rescue_from Your::Exception, :with => :show_some_error_page

This will let you show some action, in this case show_some_error_page when an unhandled exception occurs.

I hope this helps.

栀子花开つ 2024-08-23 12:57:05

如果特定控制器操作经常发生这种情况,您还可以完全禁用该操作的真实性令牌检查...

skip_before_filter :verify_authenticity_token, :only => [:create]

If this happens often for a particular controller action, you could also disable authenticity token checking entirely for that action...

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