我有以下集合示例:
{
_id: 'asdfjklsfo',
name: 'My name',
sections: [
{
title: 'my title'
},
{
title: 'second title'
}
]
}
我希望所有人sections
都有一个唯一的 ID,以便我可以轻松地添加/删除部分。
如何为每个部分创建唯一 ID?
这是我必须添加新部分的当前方法:
collection.findAndModify({id: id}, {$push:{sections:{title: 'New title'}}}, {new: true})
我使用Monk作为我的 DBI