这是我的架构:
let userSchema = new mongoose.Schema({
id: String,
displayName: String,
displayImage: String,
posts: [
{
url: String,
description: String,
likes: [String],
comments: [
{ content: String, date: String, author: { id: String, displayName: String, displayImage: String } }
]
}
]
});
我正在尝试编辑注释数组中的元素,并且已经意识到由于 MongoDB 在处理双嵌套文档时功能有限,我应该制作两个单独的模式。
但无论如何,这似乎对我有用,请记住我正在尝试编辑评论数组中特定评论的内容。
controller.editComment = (req, res, next) => {
User.findOne(
{ id: req.query.userid, 'posts._id': req.params.postid },
{ 'posts.$.comments._id': req.body.commentID }
)
.exec()
.then((doc) => {
let thisComment = doc.posts[0].comments.filter((comment) => { return comment._id == req.body.commentID; });
thisComment[0].content = req.body.edited;
doc.save((err) => { if (err) throw err; });
res.send('edited');
})
.catch(next);
};
这行得通,但它总是只更新第一篇文章的评论,不管我编辑哪条评论。但请记住thisComment[0].content
,如果 console.logged,将始终在正确的帖子下显示正确评论的正确内容。但是,doc.save(err)
我认为问题正在发生。
任何方向都非常感谢,我真的看不出似乎是什么问题。