Please enable JavaScript.
Coggle requires JavaScript to display documents.
Django REST - Coggle Diagram
Django REST
Serializer, why it is required?
-
-
-
nested object
-
required=False, many=True
-
-
-
-
ModelSerializer
-
-
-
-
add extra fields, override the default fields
-
-
Router
-
-
-
-
-
-
-
namespace
-
to put each application's URLs into their own namespace. This prevents the reverse() Django function and the {% url %} template function from returning the wrong URL because the URL-pattern name happened to match in another app.
-
filtering
default behavior of list views, how to override?
-
-
-
-
-
-
-
serializer fields
-
-
-
-
-
choice selection, file upload, composite, miscellaneous, custom fields
-
-
-
-