Django backend http service, how to distinguish between get and post interfaces? Is it indistinguishable?

http services of go, such as those from the gin framework, have interfaces that clearly distinguish between different method and execute different handler. Does django not distinguish between different method??

Mar.10,2021

this kind of question is generally found in official documents. The address is as follows:
Django documentation
can be judged. For more information, please see the introduction of http, response object in the official document:
https://docs.djangoproject.com/en/2.0/ref/request-response/

.
Menu