what is serializer in django
Answers
Answered by
1
Serializing Django objects. Django's serialization framework provides a mechanism for “translating” 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).
Similar questions