InterviewSolution
Saved Bookmarks
| 1. |
Explain Django Response lifecycle? |
|
Answer» Whenever a request is MADE to a web page, Django creates an HttpRequest object that contains METADATA about the request. After that Django loads the particular view, PASSING the HttpRequest as the first argument to the view function. Each view will be returning an HttpResponse object.
|
|