所以这个问题has been asked before,但没有详细回答。
我想覆盖默认的Pylons错误页面,以制作更好的自定义错误页面。我已经覆盖了error.py
中的控制器,如下所示:
def document(self):
"""Render the error document"""
resp = request.environ.get('pylons.original_response')
content = literal(resp.body) or cgi.escape(request.GET.get('message', ''))
custom_error_template = literal("""\
# some brief HTML here
""")
page = custom_error_template % \
dict(prefix=request.environ.get('SCRIPT_NAME', ''),
code=cgi.escape(request.GET.get('code', str(resp.status_int))),
message=content)
return page
这很好用。我现在要做的是在模板目录中使用一个模板,这样404页面就可以继承我常用的布局模板,CSS等。
(我知道这对于500个错误来说是一个坏主意 - 在我使用模板而不是文字之前,我会在error.py
检查代码是404。)
所以,这是问题所在。如何定义custom_error_template
指向我的模板,而不是文字?
答案 0 :(得分:1)
您应该能够使用render
方法(从yourapp.lib.base
导入,并使用return render('/path/to/error/template')
。
答案 1 :(得分:0)
只需创建视图并使用add_notfound_view
配置方法进行配置。