1.

How Django process a request?

Answer»

When a user requests a PAGE, Django determines whether the request URL pattern is mentioned in URLs.py. Once the regex matches, Django CALLS the corresponding view. HttpRequest is passed as an ARGUMENT to that view function and the IMPLEMENTATION part is EXECUTED further.



Discussion

No Comment Found