Django自定義全局403、404、500錯(cuò)誤頁面的示例代碼
自定義模板
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-服務(wù)器錯(cuò)誤</title> </head> <body> HTTP 500 - 內(nèi)部服務(wù)器錯(cuò)誤 </body> </html>
編寫視圖
# 全局403、404、500錯(cuò)誤自定義頁面顯示 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)頁面 handler403 = permission_denied handler404 = page_not_found handler500 = page_error
嘗試使用無權(quán)限用戶訪問,看是否會顯示該頁面
如果不對,修改settings.py中的DEBUG的值
DEBUG = False
注:若是DEBUG=True,有些情況下則不會生效
Http404拋出異常
raise Http404('資源不存在<id:{}>,請?jiān)L問 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-無法找到文件</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) { // 一鏈接開頭才跳轉(zhuǎn) toastr.warning('{{ exception|safe }}', '跳轉(zhuǎn)中'); setTimeout(function () { //這里寫時(shí)間到后執(zhí)行的代碼 $(location).attr('href', redirect_url); }, 3000); } }) </script> </body> </html>
后端
raise Http404('訪問資源不存在,即將跳轉(zhuǎn) <span id="redirect_url">{}</span>'.format('blog.starmeow.cn'))
那么當(dāng)出現(xiàn)404錯(cuò)誤是,jquery就獲取該di的值,如果是//或者是http開頭,表明可能是個(gè)鏈接(后端請限制格式),前端直接跳轉(zhuǎn)
到此這篇關(guān)于Django自定義全局403、404、500錯(cuò)誤頁面的示例代碼的文章就介紹到這了,更多相關(guān)Django 403、404、500錯(cuò)誤頁面內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
python爬蟲 urllib模塊反爬蟲機(jī)制UA詳解
這篇文章主要介紹了python爬蟲 urllib模塊反爬蟲機(jī)制UA詳解,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-08-08如何使用Python修改matplotlib.pyplot.colorbar的位置以對齊主圖
使用matplotlib.colors模塊可以完成大多數(shù)常見的任務(wù),下面這篇文章主要給大家介紹了關(guān)于如何使用Python修改matplotlib.pyplot.colorbar的位置以對齊主圖的相關(guān)資料,需要的朋友可以參考下2022-07-07Django makemigrations migrate執(zhí)行成功但不創(chuàng)建數(shù)據(jù)庫表的解決
這篇文章主要介紹了Django makemigrations migrate執(zhí)行成功但不創(chuàng)建數(shù)據(jù)庫表的解決方案,具有很好的參考價(jià)值,希望對大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-09-09Python Dataframe 指定多列去重、求差集的方法
今天小編就為大家分享一篇Python Dataframe 指定多列去重、求差集的方法,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-07-07