1
我試圖在函數中使用字符串作爲參數。是這樣的可能嗎?在函數中使用字符串作爲參數
from django.contrib.auth.models import User
param_var = 'contains'
User.objects.filter(first_name__{param_var}='John')
# ideally, this should equate to:
User.objects.filter(first_name__contains='John')
更何況,這是一個貧窮的風格和難以管理 – akonsu
@akonsu:同意。以下面的答案爲例:「這是切開手腕的一種方法,但是你確定你想要嗎?」。 – retracile