I am facing some problem related to parse.com
I want to fetch the data for a perticular objectId...I have used following code to get the data but seems it is depreciated..as it returned following exception
no results found for query
I have used following code to get the data form objectId:
ParseQuery<ParseObject> query = new ParseQuery<ParseObject>("User");
query.getInBackground("U8mCwTHOaC", new GetCallback() {
public void done(ParseObject object, ParseException e) {
Log.d(">>>", "0000>>>" +objid);
dlg.dismiss();
if (e == null) {
// object will be your game score
Log.d(">>",">>"+object);
} else {
// something went wrong
Log.d(">>",">>"+e);
}
}
});
Here "U8mCwTHOaC" is my objectId,I want to fetch the row of this objectId.Thanks in advance..
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…