作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我执行以下查询:
results = db.engine.execute(sql_query)
它按预期返回行的位置:
>>> for record in results:
... print(record['path'])
...
Top.Collections.Pictures.Astronomy.Stars
Top.Collections.Pictures.Astronomy.Galaxies
Top.Collections.Pictures.Astronomy.Astronauts
当我尝试第二次或第三次迭代它时,对象为空:
>>> for record in results:
... print(record['path'])
...
>>>
如何保存并重复使用 ResultProxy 多次迭代它?
最佳答案
您可能有一个 iterator 对象被返回,所以一旦迭代完它,您就不能再遍历它了。假设您的结果不是非常大,您可以:
results = db.engine.execute(sql_query)
results = list(results)
这会将迭代器对象变成一个列表,您可以对其进行多次迭代。
关于python - 如何多次迭代 ResultProxy?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39880685/
我是一名优秀的程序员,十分优秀!