如何从解析中检索指针列的值

时间:2015-03-29 17:05:47

标签: android parse-platform

我想在parse中检索存储在指针类型列中的值。我使用以下内容:

ParseQuery test = ParseUser.getQuery();
                test.include("_Installation"); 
                test.getInBackground("EMqw4TOQ0c", new GetCallback() {
                    public void done(ParseObject parseObject, ParseException e) {
                        id = parseObject.get("identification").toString();
                        Log.d("SUCCESS !!! :",id);
                    }
                });

有了这个,我得com.parse.ParseInstallation@42619a80 id的值是错误的。

如何存储正确的值?

0 个答案:

没有答案