Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

You cannot call `.save()` after accessing `serializer.data`

Error Showing when post data from API

You cannot call `.save()` after accessing `serializer.data`.If you need to access data before committing to the database then inspect 'serializer.validated_data' instead. 

My written Code is:


serializerdata = serializers.CreateSerializer(data=request.data)
if serializerdata.is_valid():
    user_id = serializerdata.data.get('user_id')
    if user_id==2:
        serializerdata.save(i_created_by=request.user)
        return JsonResponse({"message": "success"}) 
    else:
        return JsonResponse({"message": "user invalid"})    
else:
    return JsonResponse({"message": "error"})   

like image 852
Chandan Sharma Avatar asked Jul 20 '26 13:07

Chandan Sharma


1 Answers

Take care that in your debugger watch there is no serializer.data listed. It will read out the data before serializer.save() is invoked and lead to this confusing behaviour. Took me at least an hour to figure it out.

like image 174
A. L Avatar answered Jul 23 '26 03:07

A. L



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!