Pylons:如何编写自定义404页面?

时间:2010-12-15 11:22:08

标签: python pylons http-status-code-404

所以这个问题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指向我的模板,而不是文字?

2 个答案:

答案 0 :(得分:1)

您应该能够使用render方法(从yourapp.lib.base导入,并使用return render('/path/to/error/template')

答案 1 :(得分:0)