May 2018
Beginner to intermediate
526 pages
11h 57m
English
You already know the MIDDLEWARE setting, which contains the middlewares for your project. You can think of it as a low-level plugin system, allowing you to implement hooks that get executed in the request/response process. Each middleware is responsible for some specific action that will be executed for all HTTP requests or responses.
When an HTTP request is received, middlewares are executed in order of appearance in the MIDDLEWARE setting. When an HTTP response has been generated by Django, the response passes through all middlewares back in reverse order.
A middleware can be written as a function as follows:
Read now
Unlock full access