Skip to content
Advertisement

Unable to use ManyToMany Field with Django and Postgres

I am working on a project with Django, Postgres. I typed that:

JavaScript

When I type that:

JavaScript

I got that:

JavaScript

Then if I type that:

JavaScript

I got that:

JavaScript

Whereas the field name exists.

Models.py:

JavaScript

Advertisement

Answer

M2M relationship means – you have many objects.

user.food.name get attrbute name from M2M manager.

Probably you mean user.food.all().name – this code get attrbute name of Queryset.

Of course, I understand. You want user.food.first().name – this get name of first food if it exists or exception again, if foodQueryset contains Nothing.

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