Google News
logo
Django - Interview Questions
What's the use of Middleware in Django?
Middleware is something that executes between the request and response. In simple words, you can say it acts as a bridge between the request and response. Similarly In Django when a request is made it moves through middlewares to views and data is passed through middleware as a response.
Advertisement