Django自定義全局403、404、500錯(cuò)誤頁(yè)面的示例代碼
自定義模板
403
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>403-禁止訪(fǎng)問(wèn)</title> </head> <body> HTTP 403 - 禁止訪(fǎng)問(wèn) </body> </html>
404
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>404-無(wú)法找到文件</title> </head> <body> HTTP 404- 無(wú)法找到文件 </body> </html>
500
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>500-服務(wù)器錯(cuò)誤</title> </head> <body> HTTP 500 - 內(nèi)部服務(wù)器錯(cuò)誤 </body> </html>
編寫(xiě)視圖
# 全局403、404、500錯(cuò)誤自定義頁(yè)面顯示 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 = [ # ... ] # 定義錯(cuò)誤跳轉(zhuǎn)頁(yè)面 handler403 = permission_denied handler404 = page_not_found handler500 = page_error
嘗試使用無(wú)權(quán)限用戶(hù)訪(fǎng)問(wèn),看是否會(huì)顯示該頁(yè)面
如果不對(duì),修改settings.py中的DEBUG的值
DEBUG = False
注:若是DEBUG=True,有些情況下則不會(huì)生效
Http404拋出異常
raise Http404('資源不存在<id:{}>,請(qǐng)?jiān)L問(wèn) xxx 查看')
模板中捕獲異常信息
使用{{ exception }}即可捕獲異常信息,轉(zhuǎn)換為html代碼{{ exception|safe }},可以根據(jù)這些代碼中的id等,得到跳轉(zhuǎn)的鏈接,參考
<!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-無(wú)法找到文件</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) { // 一鏈接開(kāi)頭才跳轉(zhuǎn)
toastr.warning('{{ exception|safe }}', '跳轉(zhuǎn)中');
setTimeout(function () {
//這里寫(xiě)時(shí)間到后執(zhí)行的代碼
$(location).attr('href', redirect_url);
}, 3000);
}
})
</script>
</body>
</html>
后端
raise Http404('訪(fǎng)問(wèn)資源不存在,即將跳轉(zhuǎn) <span id="redirect_url">{}</span>'.format('blog.starmeow.cn'))
那么當(dāng)出現(xiàn)404錯(cuò)誤是,jquery就獲取該di的值,如果是//或者是http開(kāi)頭,表明可能是個(gè)鏈接(后端請(qǐng)限制格式),前端直接跳轉(zhuǎn)
到此這篇關(guān)于Django自定義全局403、404、500錯(cuò)誤頁(yè)面的示例代碼的文章就介紹到這了,更多相關(guān)Django 403、404、500錯(cuò)誤頁(yè)面內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Python字符串的創(chuàng)建和駐留機(jī)制詳解
字符串駐留是一種在內(nèi)存中僅保存一份相同且不可變字符串的方法,本文重點(diǎn)給大家介紹Python字符串的創(chuàng)建和駐留機(jī)制,感興趣的朋友跟隨小編一起看看吧2022-02-02
Python如何使用type()函數(shù)查看數(shù)據(jù)的類(lèi)型
這篇文章主要介紹了Python如何使用type()函數(shù)查看數(shù)據(jù)的類(lèi)型,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-05-05
基于Python實(shí)現(xiàn)文件的壓縮與解壓縮
在日常工作中,除了會(huì)涉及到使用Python處理文本文件,有時(shí)候還會(huì)涉及對(duì)壓縮文件的處理。本文為大家總結(jié)了利用Python可以實(shí)現(xiàn)的幾種文件壓縮與解壓縮實(shí)現(xiàn)代碼,需要的可以參考一下2022-03-03

