Skip to content
Advertisement

TypeError: post() takes 1 positional argument but 2 were given

I have my model class:

JavaScript

and my View:

JavaScript

My model only takes in 1 field which is the email. Not sure why I keep getting ‘TypeError: post() takes 1 positional argument but 2 were given’.

Advertisement

Answer

Your post is a method, so the first parameter is self:

JavaScript

It is however quite seldom that one implements a post method itself. Usually you work for example with a CreateAPIView [drf-doc], and one can let the serializer, etc. handle all the work.

Advertisement