标签: django mongodb pymongo
是否可以迭代django-template中的pymongo.cursor.Cursor对象?
答案 0 :(得分:1)
是的,这是可能的。 Pymongo游标实现标准的Python可移植方法,因此您可以使用{% for element in cursor %}...{% endfor %}迭代游标的值,就像列表或其他可迭代序列一样。
{% for element in cursor %}...{% endfor %}