Home > other >  How to develop a rest api without using serializer in Django Rest Framework?
How to develop a rest api without using serializer in Django Rest Framework?

Time:12-19

I want to create a Student Register and Login Api without using serializer in django Rest Framework. So I want to know how I make CRUD operation for those api using ApiView

Any one please solve this

CodePudding user response:

I don't think you can, or even should but first, you need to understand what a serializer actually does:

Serializers allow complex data such as querysets and model instances to be converted to native Python datatypes that can then be easily rendered into JSON, XML, or other content types. Serializers also provide deserialization, allowing parsed data to be converted back into complex types, after first validating the incoming data

So don't be scared by serializers. Just take your time and learn how to use them using the many tutorials available online.

CodePudding user response:

If you are using DRF then you must need to create the serializers. But you can create the API without using DRF and serialzers.

  • Related