如何在 Rails3 中使用 CanCan 在活动页面上显示 AccessDenied 错误
我正在尝试找到一种无需使用 redirect_to
方法即可在活动页面上显示 Flash 错误的方法。
顺便说一下,标准的 flash[:alert] = exception.message
没有向我显示任何错误消息,因此我将其更改为 flash[:error]
。
感谢您的任何建议!
rescue_from CanCan::AccessDenied do |exception|
flash[:error] = exception.message
redirect_to deadlines_path
end
I am trying to find a way to display my flash errors on the active page without the redirect_to
method.
By the way, the standard flash[:alert] = exception.message
didn't show me any error messages, so I changed it to flash[:error]
.
Thanks for any advice!
rescue_from CanCan::AccessDenied do |exception|
flash[:error] = exception.message
redirect_to deadlines_path
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
不使用重定向。
Try:
without a redirect.