1. ホーム
  2. python

[解決済み] Django では、動的なフィールド検索で QuerySet をどのようにフィルタリングするのでしょうか?

2022-04-20 02:59:46

質問

あるクラスが与えられた。

from django.db import models

class Person(models.Model):
    name = models.CharField(max_length=20)

動的な引数に基づいてフィルタリングするQuerySetは可能ですか、可能であればどのように可能ですか? 例えば

 # Instead of:
 Person.objects.filter(name__startswith='B')
 # ... and:
 Person.objects.filter(name__endswith='B')

 # ... is there some way, given:
 filter_by = '{0}__{1}'.format('name', 'startswith')
 filter_value = 'B'

 # ... that you can run the equivalent of this?
 Person.objects.filter(filter_by=filter_value)
 # ... which will throw an exception, since `filter_by` is not
 # an attribute of `Person`.

解決方法は?

Pythonの引数展開を使って解決できる場合があります。

kwargs = {
    '{0}__{1}'.format('name', 'startswith'): 'A',
    '{0}__{1}'.format('name', 'endswith'): 'Z'
}

Person.objects.filter(**kwargs)

これは非常に一般的で便利なPythonのイディオムです。