本文介绍了从Django查询集中仅获取特定属性的更好方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个名为Songs的模型,其属性之一是'title'.

I have a model named Songs and one of its attributes is 'title'.

假设我要获取存储在数据库中的所有歌曲名称的列表.

Let's say I want to get a list of all the song titles stored in a database.

我可以做到:

titles = []

for song in Song.objects.all():
    titles.append(song.title)

是否有一种更简单的方法?

Is there is a simpler way of doing this?

推荐答案

最佳变体: Song.objects.values('title')

文档: https://docs.djangoproject.com/en/1.8/ref/models/querysets/#values

这篇关于从Django查询集中仅获取特定属性的更好方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 23:18