如何检查金字塔(pylons 2)中哪些权限授权失败?

发布于 2024-10-16 06:52:06 字数 223 浏览 4 评论 0原文

我添加了一个禁止视图的视图:

from pyramid.exceptions import Forbidden
config.add_view(forbidden_view, context=Forbidden)

它重定向到登录屏幕。

但现在我添加了一些需要管理员访问权限的管理内容,我只想显示一个“您没有权限”屏幕,我如何在禁止视图中检查这一点?

I add a view for the forbidden view:

from pyramid.exceptions import Forbidden
config.add_view(forbidden_view, context=Forbidden)

which redirects to a log in screen.

But now i added some admin things which needed admin access, and I want to just show a "you don't have the permission" screen, how do I check for that in the forbidden view?

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

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

发布评论

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

评论(1

水染的天色ゝ 2024-10-23 06:52:06

我担心当金字塔因权限拒绝而引发禁止错误时,信息会丢失。 TODO.txt 中有一个项目可以通过禁止错误来解决它。

I'm afraid that information is lost when Pyramid raises a Forbidden error as the result of a permission denial. There's an item in the TODO.txt to carry it along through the Forbidden error.

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