那样或者你可以这样做:
for key, value in data.items():
instance = model_class.objects(key = value)
或者只能这样做?:
instance = model_class.objects(pk = value)
答案 0 :(得分:2)
按unpacking the dictionary提供关键字参数:
instance = model_class.objects.filter(**data)
data
字典中的键是model_class
字段名称。