How passing string on filter keyword to Django Objects Model?

左心房为你撑大大i 提交于 2019-12-18 16:31:22

问题


How can i pass variables on a keyword object filter on a view?

I have:

my_object = MyModel.objects.filter(my_keyword =my_filter_values)

I want to grab my_keyword from a variable coming from a string, like this:

my_string = 'my_keyword'
my_object = MyModel.objects.filter(my_string=my_filter_values)

But this doesn't work because Django doesn't know my_string from MyModel.

Edit: I've found this SO question - I'll test and report back.


回答1:


You can do something like this:

my_filter = {}
my_filter[my_keyword] = my_filter_value

my_object = MyModel.objects.filter(**my_filter)

As an example, your variables might be:

my_keyword = 'price__gte'
my_filter_value = 10

Which would result in getting all objects with a price >= 10. And if you want to query on more than one field, you can just add another line below my_filter[my_keyword]:

my_filter[my_keyword] = my_filter_value
my_filter[my_other_keyword] = my_other_filter_value


来源:https://stackoverflow.com/questions/7212847/how-passing-string-on-filter-keyword-to-django-objects-model

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!