Skip to content
Advertisement

how to perform post request on nested serailizers in django rest framework

Hii I am new to django rest framework i am able to perform put delete and get operations but unable to perform post operations
models.py

JavaScript

serializers.py

JavaScript

urls.py

JavaScript

views.py

JavaScript

this is the json format when i perform get request

JavaScript

As mentioned earliew whenever i perform put delete or get its working but its not a case with post the error i get is this:

JavaScript

The .create() method does not support writable dotted-source fields by default. Write an explicit .create() method for serializer accounts.serializers.userSerializers, or set read_only=True on dotted-source serializer fields.

Advertisement

Answer

Two points to consider here:

  1. DRF Serializers do not support write_only. Instead, use extra_kwargs in the serializer’s Meta block.
  2. Write a create method in your serializer. Rough example below.

See this from the docs for more information about write-only fields in DRF serializers.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement