如何从 django 中的查询集创建特定属性的列表?
我有一个来自模型查询的queryset
。该模型有一个名为 elem_num
的字段。
如何使用 queryset
中的所有 elem_nums
创建列表?
示例:
如果对象具有字段“Name”和“Age”并且查询是:
query = [Object1, Object2]
如何构建这样的列表:
age_list = [22, 31]
I have a queryset
from models query. The model has a field called elem_num
.
How can I create list with all of the elem_nums
from the queryset
?
Example:
If Object has the fields "Name" and "Age" and query is:
query = [Object1, Object2]
how can I build a list like this:
age_list = [22, 31]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://docs.djangoproject.com/en/dev/参考/模型/查询集/#values-list
http://docs.djangoproject.com/en/dev/ref/models/querysets/#values-list