Rails - 捕获“无效的真实性令牌”例外
我目前正在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的 application_controller.rb 中,您将执行以下操作:
这将让您显示一些操作,在本例中是当发生未处理的异常时的
show_some_error_page
。我希望这有帮助。
In your application_controller.rb you'll do something like:
This will let you show some action, in this case
show_some_error_page
when an unhandled exception occurs.I hope this helps.
如果特定控制器操作经常发生这种情况,您还可以完全禁用该操作的真实性令牌检查...
If this happens often for a particular controller action, you could also disable authenticity token checking entirely for that action...