如何摆脱带有“您无权访问此操作”的空白错误页面。在 Rails 3 的 decl_auth 中?

发布于 2024-10-18 16:11:58 字数 198 浏览 1 评论 0原文

授权工作得很好,但是当用户访问他们无权访问的操作/控制器时,他们会看到:

You are not allowed to access this action

页面是空白的。

如何自定义用户看到的内容?要么完全替换消息,要么完全用新页面替换页面?

我该怎么做?

谢谢。

The authorization works nicely, but when a user accesses an action/controller that they don't have access to, they see:

You are not allowed to access this action

The page is blank.

How do I customize what the user sees ? Either by replacing the message altogether, to replacing the page with a new page altogether ?

How would I do this ?

Thanks.

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

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

发布评论

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

评论(1

木緿 2024-10-25 16:11:58

为了处理这个问题,我在 ApplicationController 中添加了一个 permission_denied 方法:

def permission_denied
  flash[:notice] = "Sorry, you are not authorized to access that page." 
  redirect_to root_url
end

请参阅本 Railscast 的最后一部分:http://asciicasts.com/episodes/188-declarative-authorization

To handle this, I added a permission_denied method in the ApplicationController:

def permission_denied
  flash[:notice] = "Sorry, you are not authorized to access that page." 
  redirect_to root_url
end

See last section of this Railscast: http://asciicasts.com/episodes/188-declarative-authorization

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