简体   繁体   中英

How to access Parse.com Relation Data

I need data from user to question . I've and access separately data (_User and Question data) but i need relation access.For ex i need access question title from _User class.

在此处输入图片说明

在此处输入图片说明

This might work. The following will take the questions from the current logged user.

ParseUser user = ParseUser.getCurrentUser();
ParseRelation<ParseObject> relation = user.getRelation("question_id");
relation.getQuery().findInBackground(new FindCallback<ParseObject>() {
    void done(List<ParseObject> results, ParseException e) {
      if (e != null) {
        // There was an error
      } else {
        // results have all the questions
      }
    }
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM