Django Rest Framework API #10 / Serializers , Model Serializer.

Опубликовано: 28 Сентябрь 2024
на канале: Code Environment
4,267
46

Django Rest Framework Serializers . What Is Serializer , How To Write a Model Serializer For a Django Model Class and serializing data .

Serializers are one of the CORE concepts of the django rest-framework.
Serialization is the process of:
- Converting server-side data into something that other technologies can interact with e.g(Json data)
- Converting data from other technologies into something the django server can read .

Please enroll in the full course on Udemy:
https://www.udemy.com/course/python-d...

Source code: https://github.com/CodeEnvironment/dj...

ModelViewSet and Routers With Serializer:
   • Django Rest Framework API #11 / Model...