开发者

Django query filter with variable column

I am trying to filter a queryset using

info=members.filter(name__contains=search_string)

The problem I have is I do not know which field the user wants to search ahead of time so I need to substitute 'name' with a variable as in

variable_column = 'name'
search_type = 'contains'
filter = variable_column + '__' 开发者_如何转开发+ search_type
info=members.filter(filter=search_string)

How do I do that?

Rich


Almost there..

members.filter(**{'string__contains': 'search_string'})

To understand what it's doing, google around : ) Understanding kwargs in Python

** expands dictionary key/value pairs to keyword argument - value pairs.

To adapt your example to the solution:

variable_column = 'name'
search_type = 'contains'
filter = variable_column + '__' + search_type
info=members.filter(**{ filter: search_string })


Syntax:

model_name.objects.filter(column_name='value')

Ex: In my scenario, I wanted to find out all records with status completed from the Student table.

Student.objects.filter(status="completed")
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜