gpt4 book ai didi

node.js - 更新双重嵌套数组 MongoDB

转载 作者:太空宇宙 更新时间:2023-11-03 22:40:00 25 4
gpt4 key购买 nike

考虑这个架构:

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 } }
]
}
]
});

我可以使用此查询从评论数组中删除某个项目

controller.deleteComment = (req, res, next) => {
User.findOneAndUpdate(
{ id: req.query.userid, 'posts._id': req.params.postid, },
{
$pull: {
'posts.$.comments': { _id: req.body.commentID },
}
}
)
.exec()
.then(() => {
res.send('deleted');
})
.catch(next);
};

我是否可以使用 $set 运算符更新 comments 数组中的元素?我需要根据评论 ID 更改评论的内容..如下所示:

controller.editComment = (req, res, next) => {
User.findOneAndUpdate(
{ id: req.query.userid, 'posts._id': req.params.postid, 'comments._id':req.body.commentID },
{
$set: {
'posts.$.comments': { content: req.body.edited },
}
}
)
.exec()
.then(() => {
res.send('deleted');
})
.catch(next);
};

这 ^ 显然不起作用,但我想知道是否有办法可以做到这一点?

更新根据下面的建议,我正在执行以下操作来仅管理一个架构。这是有效的,但是无论我正在编辑哪些帖子评论,只有第一篇帖子的评论会得到更新。我已经检查过,返回文档总是正确的。 doc.save() 方法肯定有问题。

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);
};

最佳答案

我不知道一个简单(甚至艰难:P)的方法来实现我想要做的事情。在 mongo 中,双重嵌套数组中的操作相对困难,因此最好避免。

如果您仍然愿意接受架构更改,我建议您为评论创建一个不同的架构,并在用户架构中引用该架构。

因此您的评论架构将如下所示:

let commentSchema = new mongoose.Schema({
content: String,
date: String,
author: {
id: String,
displayName: String,
displayImage: String
}
});

您的用户架构应如下所示:

let userSchema = new mongoose.Schema({
id: String,
displayName: String,
displayImage: String,
posts: [{
url: String,
description: String,
likes: [String],
comments: [{
type: Schema.Types.ObjectId,
ref: 'comment' //reference to comment schema
}]
}]
});

这样您的数据操作就会容易得多。您可以populate获取用户文档时的评论。并且,请注意更新/删除操作是多么容易,因为您已经知道要更新的评论的 _id。

希望这个答案对您有所帮助!

关于node.js - 更新双重嵌套数组 MongoDB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43422767/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com