Back to search

What is Django middleware?

Middleware is a request and response processing layer that runs around the view.

Django Easy Theory

What is Django middleware?

Middleware is a request and response processing layer that runs around the view.

  • Runs in order on request
  • Runs reverse order on response
  • Good for auth, logging, headers

What is Django middleware?