Django自定義全局403、404、500錯誤頁面的示例代碼
自定義模板
403
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>403-禁止訪問</title> </head> <body> HTTP 403 - 禁止訪問 </body> </html>
404
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>404-無法找到文件</title> </head> <body> HTTP 404- 無法找到文件 </body> </html>
500
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>500-服務器錯誤</title> </head> <body> HTTP 500 - 內部服務器錯誤 </body> </html>
編寫視圖
# 全局403、404、500錯誤自定義頁面顯示 def page_not_found(request): return render(request, '404.html') def page_error(request): return render(request, '500.html') def permission_denied(request): return render(request, '403.html')
修改url
from .views import page_error, page_not_found, permission_denied urlpatterns = [ # ... ] # 定義錯誤跳轉頁面 handler403 = permission_denied handler404 = page_not_found handler500 = page_error
嘗試使用無權限用戶訪問,看是否會顯示該頁面
如果不對,修改settings.py中的DEBUG的值
DEBUG = False
注:若是DEBUG=True,有些情況下則不會生效
Http404拋出異常
raise Http404('資源不存在<id:{}>,請訪問 xxx 查看')
模板中捕獲異常信息
使用{{ exception }}即可捕獲異常信息,轉換為html代碼{{ exception|safe }},可以根據(jù)這些代碼中的id等,得到跳轉的鏈接,參考
<!DOCTYPE html>
{% load static %}
<html lang="en">
<style type="text/css">
.pic {
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
</style>
<head>
<meta charset="UTF-8">
<title>404-無法找到文件</title>
<link rel="external nofollow" rel="stylesheet">
</head>
<body>
<a rel="external nofollow" ><img class="pic" src="{% static 'errors/404.gif' %}"></a>
<p hidden>{{ exception|safe }}</p>
<script src="http://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="http://cdn.bootcss.com/toastr.js/latest/js/toastr.min.js"></script>
<script>
toastr.options = { // toastr配置
"closeButton": true,
"debug": false,
"progressBar": true,
"positionClass": "toast-top-center",
"showDuration": "400",
"hideDuration": "1000",
"timeOut": "7000",
"extendedTimeOut": "1000",
"showEasing": "swing",
"hideEasing": "linear",
"showMethod": "fadeIn",
"hideMethod": "fadeOut"
};
$(function () {
let redirect_url = $('#redirect_url').text();
if (redirect_url.indexOf('//') === 0 || redirect_url.indexOf('http') === 0) { // 一鏈接開頭才跳轉
toastr.warning('{{ exception|safe }}', '跳轉中');
setTimeout(function () {
//這里寫時間到后執(zhí)行的代碼
$(location).attr('href', redirect_url);
}, 3000);
}
})
</script>
</body>
</html>
后端
raise Http404('訪問資源不存在,即將跳轉 <span id="redirect_url">{}</span>'.format('blog.starmeow.cn'))
那么當出現(xiàn)404錯誤是,jquery就獲取該di的值,如果是//或者是http開頭,表明可能是個鏈接(后端請限制格式),前端直接跳轉
到此這篇關于Django自定義全局403、404、500錯誤頁面的示例代碼的文章就介紹到這了,更多相關Django 403、404、500錯誤頁面內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
Python如何使用type()函數(shù)查看數(shù)據(jù)的類型
這篇文章主要介紹了Python如何使用type()函數(shù)查看數(shù)據(jù)的類型,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-05-05

