InterviewSolution
Saved Bookmarks
| 1. |
What’s the use of Middleware in Django? |
|
Answer» 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. |
|