如何使用 django-autocomplete-light 更改选项值?

How to change the option values with django-autocomplete-light?

我以相当标准的方式使用 django-autocomplete-light,只需按照 http://django-autocomplete-light.readthedocs.io/en/master/tutorial.html 上的教程操作即可。

然而,每当我使用 Select2 小部件时,选项的值自动成为模型实例的主键。有没有办法使用将值设置为模型的另一个字段?

只需要自己更改默认行为并 运行 到此,希望它仍然可以帮助那里的人。

documentation提到了使用get_result_label

return不同标签的方法
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

现在更改 returned 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