如果我将数据存储在Parse.com上作为JSON对象,是否可以查询它?例如,我有一个列“主题”,数据存储为对象:
{
"type": "cal",
"action": "add",
"id": "123"
}
我想查询匹配subject.type = "cal"
的记录。可能吗?
答案 0 :(得分:0)
String subname = "\"type\": \"cal\"";
String[] names = {subname};
query.whereContainedIn("columnname", Arrays.asList(names));
你可以使用上面的代码帮助你在json中找到type =“cal”主题。 whereContainedIn方法将为您提供帮助,列中的数组字符串是否可用。 使用“字符串中的双qoutes”