gpt4 book ai didi

python - 为我的 Django 项目中的每个应用程序创建自定义 404 错误?

转载 作者:行者123 更新时间:2023-12-05 00:20:10 25 4
gpt4 key购买 nike

有没有办法为我的 Django 项目中的每个应用程序创建多个自定义错误模板,我的意思是,在我的项目中,我有 3 个应用程序,我将为每个应用程序显示 3 个不同的自定义 404 错误。

现在,我正在为我的后台应用程序和前台显示相同的 404 错误页面。

最佳答案

创建自定义 error view并将其分配给 handler404根目录中的变量 urls.py :

from django.views.defaults import page_not_found

def my_error_404(request, exception):
template_name = '404.html'
if request.path.startswith('/backoffice/'):
template_name='backoffice/404.html'
elif request.path.startswith('/frontoffice/'):
template_name='frontoffice/404.html'
return page_not_found(request, exception, template_name=template_name)

此代码适用于 django 1.9。如果你使用 django <= 1.9 然后删除 exception View 中的参数。

关于python - 为我的 Django 项目中的每个应用程序创建自定义 404 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35109486/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com