我有一份文件“所有者”,可以有“n”个营地,营地有“教师”,教师有“班级”。之前我尝试使用嵌套数组来完成此操作(请参阅下面链接到我的帖子),但是我了解到位置运算符“$”没有嵌套那么深。 MongoDB: Adding an array into an existing array
但是,我了解到解决方法是使用对象集合而不是数组。我假设我必须使用“更新”和“$ set”来添加额外的“阵营”,但每次我做的都是覆盖(更新)之前插入的阵营。
以下是我想要完成的层次结构:
owner = {
firstName: 'john',
lastName: 'smith',
ownerEmail: 'john.smith@gmail.com',
camps : {
{
name: 'cubs-killeen',
location: 'killeen'
},
{
name: 'cubs-temple',
location: 'temple'
},
instructors : {
{
firstName: 'joe',
lastName : 'black'
},
{
firstName: 'will',
lastName : 'smith'
}
}
}
}
我也一直在尝试以下方法:
db.owners.update({ownerEmail:'john.smith@gmail.com'}, {$set: { camps:{ {name:'cubs-killeen'} } }})
但是会抛出一个意外的标识符{error。
对于实现上述结构的一些示例mongo命令的任何帮助都将非常感激。
V / R
克里斯
答案 0 :(得分:20)
如上所述,您想要的结构无效。 我建议您的所有者文档使用以下结构:
{
"_id" : ObjectId("51c9cf2b206dfb73d666ae07"),
"firstName" : "john",
"lastName" : "smith",
"ownerEmail" : "john.smith@gmail.com",
"camps" : [
{
"name" : "cubs-killeen",
"location" : "killeen"
},
{
"name" : "cubs-temple",
"location" : "temple"
}
],
"instructors" : [
{
"firstName" : "joe",
"lastName" : "black"
},
{
"firstName" : "will",
"lastName" : "smith"
}
]
}
然后
db.stack.update(
{ ownerEmail: "john.smith@gmail.com" },
{
$push: {
camps: { name: "cubs-killeen", location: "some other Place" }
}
}
);
有了这个,你可以添加这样的阵营:
希望它有所帮助。
答案 1 :(得分:0)
var newObject = {usuario: req.body.usuario, fecha: req.body.fecha, edit:
req.body.edit};
await Documentos.findByIdAndUpdate(id,
{ deleted_doc: true,
$push: { history: newObject } });
res.json({ status: 'Documentos Updated' });