When are create and update called in djangorestframework serializer?
You really must split things between the views and the serializer. Serializers The Serializer is a standalone object. It is used for converting a Django model (or any kind of python datastructure, actually) into a serialized form, and the other way around. You may use it as such, wherever you want. It does not even … Read more