我以相当标准的方式使用django-autocomplete-light,只需遵循http://django-autocomplete-light.readthedocs.io/en/master/tutorial.html上的教程。
但是,每当我使用Select2小部件时,选项的值自动成为模型实例的主键。有没有办法使用将值设置为模型的另一个字段?
答案 0 :(得分:2)
只需要自己更改默认行为并遇到这种情况,希望它仍然可以帮助某个人。
documentation提到了使用get_result_label
返回不同标签的方法
class CountryAutocomplete(autocomplete.Select2QuerySetView):
def get_result_label(self, item):
return item.full_name
def get_selected_result_label(self, item):
return item.short_name
现在要更改返回的ID,这非常相似。只需覆盖get_result_value
:
def get_result_value(self, result):
"""
this below is the default behavior,
change it to whatever you want returned
"""
return str(result.pk)
总而言之,我做了这样的事情:
class TagAutocomplete(autocomplete.Select2QuerySetView):
def get_result_value(self, result):
return str(result.name)
def get_queryset(self):
qs = Tag.objects.all()
if self.q:
q = self.q
qs = qs.filter(
Q(name__icontains=q)
)
return qs