如何在 Ptah 中覆盖 HTTPForbidden?
我第一次尝试一个基于 Pyramid 的 Web 框架,名为 Ptah;我需要覆盖 HTTPForbidden
视图,以便被拒绝访问的人面临登录表单。
from pyramid import security
from pyramid.httpexceptions import HTTPFound, HTTPForbidden
import ptah
from ptah import form, view
@view.pview(context=HTTPForbidden)
def login_required(request):
return str('Hello World')
这种方式注册视图显然不起作用,但至少显示了默认的禁止视图。我如何覆盖这个视图?
I'm trying out a Pyramid-based web framework, called Ptah, for the first time; I need to override HTTPForbidden
view, so that people who are denied access are confronted with a login form.
from pyramid import security
from pyramid.httpexceptions import HTTPFound, HTTPForbidden
import ptah
from ptah import form, view
@view.pview(context=HTTPForbidden)
def login_required(request):
return str('Hello World')
Registering the view this way apparently does not work, but at least the default forbidden view is displayed. How do I override this view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Pyramid 中如何执行 HTTPForbidden 没有什么区别。
It's no difference how you do HTTPForbidden in Pyramid.
此代码使用 ptah 0.1 并使用抛出 ForbiddenError 的脚手架(ala ptah301 脚手架)可以正常工作。
This code works fine using ptah 0.1 and using a scaffolding which throws a ForbiddenError, ala ptah301 scaffold.