Skip to content
Advertisement

Creating django api view that returns filtered objects

Problem Description
I’m new to django-rest-framework and got a problem in my view. I have three models namely #User, #Profession and #StudentProfessions. I need to create an api-view that takes user_id as request-parameter and returns a list of all professions that belongs to a particular user_id.

Here’s My Codes

profession_app >> models.py

JavaScript

User Model

I used the django default model.

student_profile_app >> models.py

JavaScript

student_profile_app >> views.py

JavaScript

And In My urls

JavaScript

But when i run the server i got the following error

JavaScript

Advertisement

Answer

First of all StudentProfession.student_id has bad model parameter set (its related to User model – it should be Student model).

Django rest framework uses viewset’s for routers. What you need is serializer which will represent your endpoint api structure and viewset.

I will write simple serializer and viewset for you but you really need to read docs.

After edits from comments:

Serializer class:

JavaScript

Viewset class (that’s what you register in router !)

JavaScript

Some tips from me:

  • READ DOCS

  • you dont need to write “_id” suffix in ForeignKey fields (django make it automatically underhood – means that columns in your table will have _id suffix anyway) and then you can use params without this ugly _id… like this

    JavaScript
  • your API should be constructed like

    JavaScript
  • try not to use “real” ID’s of objects in url – use UUID’s instead – its safer

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