id: { type: String, required: true, unique: true, default: uuid.v1 },
description: { type: String },
period: [{
id: { type: String, default: uuid.v1 },
start: { type: Date, default: Date.now },
due: { type: Date },
dueWarnByHours: { type: Number, integer: true },
newnessByHours: { type: Number, integer: true },
}],
我有一个这样的嵌入式mongodb数据库文档。我尝试像下面的那样更新它
WorkItem.update({ description: req.body.description},{period.rank: 3}, function(err, req) {
if (err) return console.error(err);
console.dir(reqWorkItemId + "Successfully removed the workItem from the database");
});
但是如何使用mongoose更新嵌入式子部件期间>排名
答案 0 :(得分:2)
以下代码可以帮助您: -
var findQuery = { description: req.body.description, 'period.id' : someId};
WorkItem.update(findQuery,{$set:{'period.$.rank': 3}}, function(err, req) {
if (err) return console.error(err);
console.dir(reqWorkItemId + "Successfully removed the workItem from the database");
});
OR
WorkItem.update(findQuery,{$set:{'period.$.rank': 3}}, function(err, req) {
if (err) return console.error(err);
console.dir(reqWorkItemId + "Successfully removed the workItem from the database");
});
注意: - 这只会更新句点数组的第一个对象。
答案 1 :(得分:2)
WorkItem.update({ id: d }, { description: req.body.description, $set: { 'status.0.rank': req.body.status.rank } },
function(err, numRowsAffected, raw) {
if (err) return console.error(err);
if (numRowsAffected > 0) {
console.dir("reqWorkItemId" + "Successfully removed the workItem from the database");
} else {
console.log("fail");
//res.send(500, { error: 'carrier not updated' });
}
});
这个适用于我