如何检查金字塔(pylons 2)中哪些权限授权失败?
我添加了一个禁止视图的视图:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我担心当金字塔因权限拒绝而引发禁止错误时,信息会丢失。 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.