Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
标题说明了一切。我尝试浏览 API,但找不到方便的功能。我想了很多方法来做到这一点。我可以调用find()并计算结果中的记录数。我可以使用 SQLite 数据库并执行 SELECT 和计数。
find()
Donno,如果您以后会回到这个问题,但是...
store.find(User).count()
python 控制台是你的朋友。这将为您提供对象的所有属性...
dir(store.find(User))
这将向您显示它返回的类,以便您查看 api 文档...
store.find(User).__class__