我尝试在具有 unicode 文本的数据库上使用聚合,它显示了 unicode 对象,其中 unicode 字符再次编码。聚合后如何显示 unicode 文本?
>>> from apps.person.models import Person
>>> from django.db.models import Min
>>> for p in Person.objects.all()[:1]: print(p.full_name)
...
15 чоловік
>>> Person.objects.aggregate(Min('full_name'))
{'full_name__min': u'15 \u0447\u043e\u043b\u043e\u0432\u0456\u043a'}