标签: django dictionary django-queryset
我需要根据request.session中的内容为每个对象的queryset添加键/值。
怎么做?
艾伦
答案 0 :(得分:2)
历史回答:
您可以在查询集上使用.extra()方法添加额外的“字段”。
.extra()
有一些documentation可能有用。
新答案:
您应该使用.annotate()方法添加额外字段。
.annotate()
查看documentation。