标签: django django-models
例如,如果我想要这个对象的打印索引:
items = Item.objects.filter(depth=1)
我该怎么做?
答案 0 :(得分:1)
如果要打印项目列表/迭代器(如查询集)的位置索引,可以执行以下操作:
for i, obj in enumerate(items): print i, obj
i的值将是给定模型实例的索引。