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.
快速简便,检查数据存储是否为空的最佳方法是什么?现在我正在做 if Map.all()但是必须有一种方法可以做到这一点而不必做.all(),我想它有点矫枉过正。
if Map.all()
使用计数方法:
exists = Map.all().count(limit=1) if exists: # it's not empty!
这里有关于以编程方式获取数据存储统计信息的文档。