ParseQuery根本没有运行,没有响​​应,没有写入日志

时间:2016-01-14 08:30:29

标签: android parse-platform

为什么解析似乎没有对我的查询做任何事情。这几乎就像忽略整个街区一样。

    try {
        Log.w("UpdateContacts", "Attempting an update");
        List<ParseObject> result = friendshipAndUserQuery.find();
        for (ParseObject friendship : result) {
            Log.i("UpdateContacts", "Found friendship" + friendship.getObjectId());
            UserObject friend = (UserObject) friendship.getParseObject("to");
            Log.i("UpdateContacts", "Converted friendship to friend " + friend.getObjectId());
            contacts.add(friend);
            ((MainActivity) mContext).notify("UpdateContacts", friend.getObjectId() + " / " + friend.getUsername(), true);
        }
    } catch (ParseException e) {
        Log.e("ParseException", e.toString());
        ((MainActivity) mContext).notify("UpdateContacts", e.toString(), true);
    }

我得到&#34;尝试更新&#34;记录,但没有别的。我可以从我的Parse门户网站看到查询已经运行,我的android根本没有任何回复.. 不是空集,什么也没有。没有记录......

1 个答案:

答案 0 :(得分:0)

解决

查询引用了不正确的表名(区分大小写),Parse只是停止所有相关代码,而不是发出错误..