1👍
You need to override the create
method on your serializer http://www.django-rest-framework.org/api-guide/serializers/#saving-instances Then, inside the validated_data
, you need to save the objects manually.
Source:stackexchange.com
1👍
You need to override the create
method on your serializer http://www.django-rest-framework.org/api-guide/serializers/#saving-instances Then, inside the validated_data
, you need to save the objects manually.