MongoDb的$(更新)不更新数组的元素,而是替换它?

时间:2014-04-14 07:55:46

标签: javascript node.js mongodb mongoose

我想更新mongodb文档中的数组元素(我使用的是mongoose)。架构类似于:

{
 ..
 arr : [{
  foo: Number,
  bar: [String],
  name: String
 }]
 ..
}

我的疑问是:

SomeModel.update({
 _id: "id of the document",
 arr: {
  $elemMatch: {
   _id: "_id assigned by mongoose to array element"
  }
 }
}, {
 'arr.$': {
  name: 'new name'  
 }
}).exec()

它只是替换了整个数组元素:

{
 _id: "some objectId",
 name: 'old name',
 foo: 0,
}

为:

{
 name: 'new name'
}

我想要的是什么:

{
 _id: "some objectId",
 name: 'new name',
 foo: 0,
}

我很想知道是否可以在单一更新查询中实现此目的? (可能在我的查询中存在一个愚蠢的错误:P或其他方法)

我还想像这样做更新查询:

{
 $inc: { foo: 1},
 $push: { bar: "abc"}
}

1 个答案:

答案 0 :(得分:1)

如果您仍在努力完成整个实施,您的陈述的完整应用如下:

SomeModel.update(
    {
        "arr._id": "123"
    },
    {
        "$set": { "arr.$.name": "new name" },
        "$inc": { "arr.$.foo": 1},
        "$push": { "arr.$.bar": "abc" }
    }
)
,function(err,numAffected) {

});

所以每个操作都依次执行。