使用pyramid_handlers更改HTTPNotFound渲染器

时间:2018-01-24 02:18:58

标签: python pyramid

我想这个标题不言自明。

我一直在搜索如何更改在我的服务器上发生404时显示的页面。到目前为止,我所看到的一切都是使用Hooks来处理它,正如文档所说。

事实证明我使用的是pyramid_handlers,我不知道如何更改它。 有人愿意帮忙吗?

1 个答案:

答案 0 :(得分:1)

from pyramid.view import notfound_view_config

@notfound_view_config(renderer='404.html')
def not_found(request):
    return {}