在MongoDB中,这是我的account
文档的简化结构:
{
"_id" : ObjectId("5a70a60ca7fbc476caea5e59"),
"templates" : [
{
"name" : "Password Reset",
"content" : "AAAAAAAA"
},
{
"name" : "Welcome Message",
"content" : "BBBBBB"
}
]
}
有一个类似的default_templates
集合
let accnt = await Account.findOne({ _id: req.account._id }, { templates: 1 });
let defaults = await DefaultTemplate.find({}).lean();
我的目标是找到帐户下缺少的模板,并从默认值中获取它们。 (a)如果templates
在帐户中不存在,我需要补补(b)如果该模板已存在于帐户中,我不想更新它。
我尝试了以下操作:
if (!accnt.templates || accnt.templates.length < defaults.length) {
const accountTemplates = _.filter(accnt.templates, 'name');
const templateNames = _.map(accountTemplates, 'name');
Account.update({ _id: req.account._id, 'templates.name' : { $nin: templateNames } },
{ '$push': { 'templates': { '$each' : defaults } } }, { 'upsert' : true },
function(err, result) {
Logger.error('error %o', err);
Logger.debug('result %o', result);
}
);
}
这将在upsert成功,但是即使templateNames
中有匹配的名称,它也会输入所有默认模板。我已经验证了templateNames
数组是正确的,并且我也尝试使用$addToSet
而不是$push
,所以我一定不能理解Mongo子文档查询。
关于我在做什么错的任何想法吗?
编辑:我已经通过在更新之前简单地从默认数组中删除元素来使它起作用,但是我仍然想知道如何使用Mongoose来实现。
答案 0 :(得分:1)
您可以在mongodb中尝试bulkWrite操作
Account.bulkWrite(
req.body.accountTemplates.map((data) =>
({
updateOne: {
filter: { _id: req.account._id, 'templates.name' : { $ne: data.name } },
update: { $push: { templates: { $each : data } } },
upsert : true
}
})
)
})