我想将django查询集转换为类似
firstnames=Users.objects.values('firstnames')
得到一个看起来像
firstnames = ["Nancy", "Andrew", "Janet", "Margaret", "Steven", "Michael", "Robert", "Laura", "Anne"];
有什么见解吗?
当做
乔希
最佳答案
使用QuerySet.values_list
并指定flat=True
:
firstnames = Users.objects.values_list('firstnames', flat=True)
firstnames = list(firstnames)
关于python - 将django查询集转换为数组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21947237/