0 votes
by (160 points)
What is a serializer in Django?

1 Answer

0 votes
by (200 points)
Django's serialization framework provides a mechanism for \u201ctranslating\u201d Django models into other formats. Usually these other formats will be text-based and used for sending Django data over a wire, but it's possible for a serializer to handle any format (text-based or not).

Related questions

0 votes
1 answer
asked Oct 26, 2020 by database (120 points)
...