Skip to content
Advertisement

django FieldError: Cannot resolve keyword ‘category_name_contains’ into field. Choices are: category, description, id, image, name, order, price

I want to build a food delivering app, but facing this error. “FieldError: Cannot resolve keyword ‘category_name_contains’ into field. Choices are: catego ry, description, id, image, name, order, price”.

This is the query.py:

JavaScript

This is the views.py

JavaScript

This is my models.py:

JavaScript

Here’s the traceback:

JavaScript

So this my problem I have tried many solutions still not getting the problem here. As I can see that there is no problem in my core code but there is some internal issues, but still I can’t run my program without solving them.

Advertisement

Answer

The error makes complete sense, it is because you have ManyToMany relation with your field category, and you are filtering through filter(category_name_contains) which is not right at all.

Field lookups required __ as a prefix not _. So it must be __contains.

You should use filter(category__name__contains='Appetizer') for every condition.

If you want to filter only through names, so you can simply filter with:

Views.py

JavaScript

Note: ManyToManyField required its name to be defined as table_name with s to be the suffix, that means plural of table name. It will be better if you name it as categories instead of category in your MenuItem model.

Note: Models doesn’t require model to be the suffix, so it will be better if you name it as Order instead of OrderModel.

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