我想在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
的值是错误的。
如何存储正确的值?