Python - Django - 自定義一箇中間件

中間件簡介:

中間件是在 wsgi.py 以後,urls.py 以前,在全局操做 Django 請求和響應的模塊python

在 settings.py 中能夠看到中間件的相關配置django

 

該列表中的每個元素都是一個類,一箇中間件函數

例如:url

django.middleware.csrf.CsrfViewMiddleware
能夠寫爲:
from django.middleware.csrf import CsrfViewMiddleware

中間件的處理順序就是按照該列表元素的順序進行處理3d

中間件中能夠定義 5 個方法:csrf

process_request(self, request)
process_response(self, request, response)
process_view(self, request, view_func, view_args, view_kwargs)
process_template_response(self, request, response)
process_exception(self, request, exception)

 

自定義中間件:

在根目錄下新建一個 middleware_test.py 文件中間件

 

middleware_test.py:blog

from django.utils.deprecation import MiddlewareMixin


class Test(MiddlewareMixin):
    def process_request(self, request):
        print("這是一箇中間件 --> test")


class Test2(MiddlewareMixin):
    def process_request(self, request):
        print("這是一箇中間件 --> test2")

在 settings.py 的中間件配置中添加自定義的中間件pycharm

 

這裏先添加 Test2,再添加 Test,因此會先執行 Test2,再執行 Testio

views.py:

from django.shortcuts import HttpResponse


def index(request):
    print("這裏是 index 頁面")
    return HttpResponse("這裏是主頁面 index")

訪問,http://127.0.0.1:8000/index/

 

看一下 pycharm 打印了什麼

 

先執行了中間件 Test2,而後再執行 Test1,最後執行的是 views.py 中的 index 函數

相關文章
相關標籤/搜索