是否有任何parse.com帖子的例子有很多评论?或者使用什么方法?就像多对多关系中的一对多关系一样,我在Parse数据中有一个Post和Comment类
答案 0 :(得分:0)
// Create the comment
ParseObject myComment = new ParseObject("Comment");
myComment.put("content", txtComment.getText().toString());
// Add a relation between the Post with objectId ("1zEcyElZ80" for example) and //the comment
myComment.put("parent", ParseObject.createWithoutData("Post", PostId));
// This will save both myPost and myComment
myComment.saveInBackground();
}
我通过在按下时获得帖子ID来解决关系,感谢Kaiser的评论,一切都在那里解释。