如何为 Android 使用 Parse.com 中的关系列
How to use a Relation column in Parse.com for Android
我想知道如何在 Parse 中使用 Relation 列,我一直在寻找这个,但没有找到太多相关信息,我在下面找到了 link:Parse Relations Developer Guide
但是我没有找到有用的信息,反正我有一个 Publications Class 和一个 Comments Class,每个 publication 都有不同的评论,
那么我将如何使用它,例如获取一份出版物的所有评论。
那会很有帮助。
我已经找到了如何做到这一点,查看 Parse 开发人员指南:
以下是如何在出版物中插入评论,例如:
commentaire = new ParseObject("Commentaires");
commentaire.put("commentaire", "test1");
commentaire.saveInBackground(new SaveCallback() {
public void done(ParseException e) {
message.getRelation("commentaires").add(commentaire);
message.saveInBackground();
检索更简单:
ParseUser user = ParseUser.getCurrentUser();
ParseRelation<ParseObject> relation = user.getRelation("commentaires");
我希望这会对某人有所帮助
更多信息请查看:Parse Developer Guide
我想知道如何在 Parse 中使用 Relation 列,我一直在寻找这个,但没有找到太多相关信息,我在下面找到了 link:Parse Relations Developer Guide
但是我没有找到有用的信息,反正我有一个 Publications Class 和一个 Comments Class,每个 publication 都有不同的评论,
那么我将如何使用它,例如获取一份出版物的所有评论。
那会很有帮助。
我已经找到了如何做到这一点,查看 Parse 开发人员指南:
以下是如何在出版物中插入评论,例如:
commentaire = new ParseObject("Commentaires");
commentaire.put("commentaire", "test1");
commentaire.saveInBackground(new SaveCallback() {
public void done(ParseException e) {
message.getRelation("commentaires").add(commentaire);
message.saveInBackground();
检索更简单:
ParseUser user = ParseUser.getCurrentUser();
ParseRelation<ParseObject> relation = user.getRelation("commentaires");
我希望这会对某人有所帮助
更多信息请查看:Parse Developer Guide