您好,登錄后才能下訂單哦!
環境
中間件作用 中間件用于全局修改Django的輸入或輸出。
中間件常見用途
中間件執行流程
全局異常捕捉實現
創建django項目&添加app
django-admin startproject middleware cd middleware django-admin startapp app
添加app到項目
# middleware/settings.py # INSTALLED_APPS最后添加 app INSTALLED_APPS = [ 'app', ]
編輯中間件并添加到項目
注:中間件注冊訪問有一定的關聯性,位置不可以隨意放
# 創建app/middleware.py并編輯 from django.http import JsonResponse class CustomMiddleware: def __init__(self, get_response): print("程序啟動時執行, 只執行一次") self.get_response = get_response def __call__(self, request): print("中間件開始") response = self.get_response(request) print("中間件結束") return response def process_view(self, request, view_func, view_args, view_kwargs): print("請求實際函數前執行") def process_exception(self, request, exception): print("程序異常時執行") return JsonResponse({"msg": exception.args[0], "code": -1})
編輯middleware.setttings.py
MIDDLEWARE = [ ... 'app.middleware.CustomMiddleware' ]
編寫一個異常
# app/views.py from django.http import JsonResponse def json_response(request): print('json_response') err = 3 / 0 return JsonResponse({"msg": "ok", "code": 0})
添加到路由
# middleware/urls.py from app.views import json_response, view_response urlpatterns = [ ... path("view", view_response) ]
運行測試
訪問: http://127.0.0.1:8000/json/
結果
另一個覺用途日志記錄
# 在中間件函數process_view中添加 print("path: {}; method: {}; data: {}".format(request.get_full_path(), request.method, request.body or ''))
參考: https://docs.djangoproject.com/zh-hans/2.1/topics/http/middleware/
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。