1

我在更新记录时遇到问题。我的文档结构是这样的:

"_id" : "1141825507009",
    "person" : [
        {
            "amount" : 25,
            "id" : "1141825507009"
        }
]

我想将 person.amount 增加 3,其中 person.id 是 1141825507009。这很容易。关于什么:

Increment person.amount  by 3 if person.id exist.
Add to person list with amount 3 and id 239something845 if person.id does not exist in list. 
4

1 回答 1

0

我认为您想要的是https://jira.mongodb.org/browse/SERVER-340。您可能想观看/投票。

如果您不需要以原子方式执行此操作,则可以执行以下操作:

db.foo.update({"person.id" : {$exists : false}, /* other criteria */}, 
    {$inc : {"person.amount":3}});
var result = db.runCommand({getLastError:1})
if (result.n == 0) { // nothing updated, person.id must exist
    db.foo.update({/* criteria */}, 
        {$addToSet : {person : {amount:3, id:"239something845"}}});
}
于 2012-07-16T14:17:14.853 回答