嗨,我正在尝试引用 3 个集合,但我在 2 > 3 引用中失败了,让我解释一下我要做什么。
我有 User 类,它有参考帖子 referenceMany > Posts,在帖子中我有 referenceMany > 评论。
注意:学说 Mongo ODM + Zend Framework 2
这就像用户写了一篇文章然后有人评论它。
/** @MongoDB\Document */
class Users {
/** @MongoDB\ReferenceMany(targetDocument="Posts", mappedBy="user") */
private $posts;
}
/** @MongoDB\Document */
class Posts {
/** @MongoDB\Id */
private $wallPostId;
/** @MongoDB\ReferenceOne(targetDocument="Users", inversedBy="posts") */
private $user;
/** @MongoDB\ReferenceMany(targetDocument="Comments", mappedBy="post") */
private $comments;
/** @MongoDB\String */
private $content;
}
/** @MongoDB\Document */
class Comments {
/** @MongoDB\Id */
private $commentId;
/** @MongoDB\ReferenceOne(targetDocument="Posts", inversedBy="comments") */
private $post;
/** @MongoDB\String */
private $content;
}
我正在尝试使用此代码从任何帖子中获取所有评论
$post = $wallPostsAction->getWallPostById("5051d2a1e71a382c1b000000");
$output = "";
$output .= "Wall post content: " . $post->getContent() . "<br>";
// $comment = new Comments();
// $comment->setContent("Nice topic!");
// $comment->setPost($post);
// $this->dm->persist($comment);
// $this->dm->flush();
echo count($post->getComments());
foreach($post->getComments() as $comment){
$output .= " comment: " . $comment->getComment() . "<br>";
}
其中一份文件看起来像这样以供评论:
{
"_id": ObjectId("---"),
"post"?: {
"$ref": "Posts",
"$id": ObjectId("---"),
"$db": "db"
},
"content": "Nice topic!"
}
问题是为什么当我尝试获取特定帖子的评论时,我的评论计数为 0,但是当我尝试从用户那里获取帖子时,我可以得到它们。