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.
我正在学习使用 Parse 构建 android 应用程序。我需要检查 Parse 本地数据存储是否为空,即数据存储上当前没有固定对象。
有简单的方法吗?
快速简单的方法是:
public boolean isEmpty(String className) { ParseQuery<ParseObject> query = ParseQuery.getQuery(className); query.fromLocalDatastore(); return query.count() == 0; }
这仅适用于检查单个类。
有。查询本地数据存储并检查返回对象的数量是否== 0